View Single Post
Old 02-06-2005, 07:15 PM  
swedguy
Confirmed User
 
Industry Role:
Join Date: Jan 2002
Posts: 7,981
This works:

Code:
<?php

$newfile = file("test.txt");

function touchfile($foo) {
	$foo = trim($foo);
	touch($foo);
}
array_walk($newfile, 'touchfile');
?>
swedguy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote