noeta #250(2007/07/06 11:06 GMT) [ PHP ] Rating0/0=0.00
PHP4以下なら普通にfopenとかで
1 2 3 4 5 6 7 8 9 10
<?php function removeComment($infile, $outfile, $startwith ='#') { $r = ""; foreach(file($infile) as $line) { if (strncmp($line, $startwith, strlen($startwith))) { $r .= $line; } } file_put_contents($outfile, $r); }
Rating0/0=0.00-0+
[ reply ]
noeta
#250()
[
PHP
]
Rating0/0=0.00
Rating0/0=0.00-0+
[ reply ]