All pastes #699911 Raw Edit

returnLine function

public php v1 · immutable
#699911 ·published 2007-09-16 19:38 UTC
rendered paste body
<?phpfunction returnLine($file, $line)	{	$lines = file($file);	print($lines[$line - 1]);	}	//Example (uncomment to use)://returnLine('random.txt', 73)?>