Chinaunix首页 | 论坛 | 博客
  • 博客访问: 17774413
  • 博文数量: 7460
  • 博客积分: 10434
  • 博客等级: 上将
  • 技术积分: 78178
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-02 22:54
文章分类

全部博文(7460)

文章存档

2011年(1)

2009年(669)

2008年(6790)

分类:

2008-05-17 16:29:19

exec("/bin/grep -r '$oldword' $rootpath", $results, $errorCode);
if ($errorCode){
if ($errorCode == 1){
echo "Possibly no files were found with  $oldword in them
\n";
}
echo "OS Error: $errorCode
\n";
echo "Check 'man errno' and count down
\n";
echo "Usually paths/permissions
\n";
}
while (list(,$path) = each($results)){
$parts = explode(':', $path);
$path = $parts[0];
$fp = fopen($path, 'r') or print("Cannot read $path
\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
\n");
if ($fp){
fwrite($fp, $newdata);
fclose($fp);
echo $path, "
\n";
}
}
}
?>
Example

文章基地

阅读(302) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~