WEB开发网
开发学院WEB开发PHP 全文搜索和替换 阅读

全文搜索和替换

 2001-02-22 11:42:39 来源:WEB开发网   
核心提示:<?phpexec("/bin/grep -r '$oldWord' $rootpath", $results, $errorCode);if ($errorCode){if ($errorCode == 1){echo "Possibly no files were
<?php 
exec("/bin/grep -r '$oldWord' $rootpath", $results, $errorCode); 
if ($errorCode){ 
if ($errorCode == 1){ 
echo "Possibly no files were found with $oldword in them<BR>\n"; 
} 
echo "OS Error: $errorCode<BR>\n"; 
echo "Check 'man errno' and count down<BR>\n"; 
echo "Usually paths/permissions<BR>\n"; 
} 
while (list(,$path) = each($results)){ 
$parts = explode(':', $path); 
$path = $parts[0]; 
$fp = fopen($path, 'r') or PRint("Cannot read $path<BR>\n"); 
if ($fp){ 
$data = fread($fp, filesize($path)); 
fclose($fp); 
$newdata = str_replace($oldword, $newword, $data); 
$fp = fopen($path, 'w') or print("Cannot write $path<BR>\n"); 
if ($fp){ 
fwrite($fp, $newdata); 
fclose($fp); 
echo $path, "<BR>\n"; 
} 
} 
} 
?> 
Example 
http://yourserver.com/globalreplace.php?oldword=test&newword=text&rootpath=/path/to/dir 

Tags:全文 搜索 替换

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接