<?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 注意:联系我时,请一定说明是从【S】看到的信息,谢谢。 |
联系电话: 联系 QQ: 打电话给我、或者加QQ好友时,请一定说明来自(三亚上门维修电脑)谢谢您! 三亚上门维修电脑 | 编辑: