Posted by onlineviewer on 06/22/07 01:46
Hello All,
Can someone help me out with how to go about printing to a variable
rather than to a file using filehandles. Below i have it in perl, how
do i
get this going in php. Thanks in advance...
$string = '' ";
open $writeto, '>>', \$string;
foreach my $file(@array){
print $writeto $file;
}
[Back to original message]
|