All pastes #699915 Raw Edit

returnLine function

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