php如何做文搜索와替换
exec("/bin/grep -r '$oldWord' $rootpath", $results, $errorCode);
if ($errorCode){
if ($errorCode == 1){
echo "$oldword가 포함된 파일이 발견되지 않았을 수 있습니다
n";
}
echo "OS 오류: $errorCode
n";
echo "'man errno'를 확인하고 카운트다운
n";
echo "보통 경로/권한
n";
}
while (list(,$path) = 각각($results)){
$parts = 폭발(':', $path);
$경로 = $parts[0];
$fp = fopen($path, 'r') 또는 PRint("$path
n을 읽을 수 없습니다.");
if ($fp){
$data = fread($fp, 파일 크기($path));
fclose($fp);
$newdata = str_replace($oldword, $newword, $data);
$fp = fopen($path, 'w') 또는 print("$path
n을 쓸 수 없습니다.");
if ($fp){
fwrite($fp, $newdata);
fclose($fp);
echo $path, "
n";
}
}
}
?>
예시
http://yourserver.com/globalreplace.php?oldword=test&newword=text&rootpath=/path/to/dir
以上就介绍了php如何做文搜索및替换,包括了전체文搜索替换방면적内容,希望对PHP教程兴趣的朋友有所帮助.