当前位置: 移动技术网 > IT编程>开发语言>PHP > php 全文搜索和替换的实现代码

php 全文搜索和替换的实现代码

2019年05月11日  | 移动技术网IT编程  | 我要评论
<?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"; 



?> 

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网