php如何進行全文搜尋和替換
exec("/bin/grep -r '$oldWord' $rootpath", $results, $errorCode);
if ($errorCode){
if ($errorCode == 1){
echo "可能找不到包含 $oldword 的檔案
n";
}
echo "作業系統錯誤: $errorCode
n";
echo "檢查'man errno'並倒數
n";
echo "通常是路徑/權限
n";
}
while (list(,$path) = every($results)){
$parts = 爆炸(':', $path);
$路徑=$零件[0];
$fp = fopen($path, 'r') 或 PRint("無法讀取 $path
n");
如果 ($fp){
$data = fread($fp, 檔案大小($path));
fclose($fp);
$newdata = str_replace($oldword, $newword, $data);
$fp = fopen($path, 'w') 或 print("無法寫入 $path
n");
如果 ($fp){
fwrite($fp, $newdata);
fclose($fp);
echo $path, "
n";
}
}
}
? >
例
http://yourserver.com/globalreplace.php?oldword=test&newword=text&rootpath=/path/to/dir
以上就介紹了php如何進行全文搜尋和替換,包括了全文搜尋替換方面的內容,希望對PHP教學有興趣的朋友有所幫助。