-1
<?php
$myFile = "myfile.txt";
$fh = fopen($myFile, 'rt');
$theData = fread($fh, filesize($myFile));
$aDoor = $_GET['idno'];
echo $aDoor;
$theData = preg_replace('/\n?.*$aDoor.*$/m', '', $theData);

fwrite($fh, $theData);
fclose($fh);
echo $theData;
?>

preg_replace('/\n ?. SOMETEXT. $/m', '', $theData); それは働いています

$aDoor 文字列の使用方法

4

1 に答える 1

0

unset()PHPで関数を使用する

 unset($aDoor);

それでは内容を書きますと…

于 2013-01-16T11:31:33.013 に答える