douguan3470 2016-11-09 22:42
浏览 182
已采纳

使用PHP查找并替换所有文件中的文本

Hi Everyone,

I have list of PHP files in my project.If I want to replace index.php text to home.php and save it. It will change in all my PHP file in the directory How can I code this.

I can find and replace in single file but I don't know the way to search in whole directory and replace Kindly help me to know the way. Im new to this section.Thanks in advance.

  • 写回答

3条回答 默认 最新

  • dongzhihong3940 2016-11-09 23:03
    关注

    You can use glob to get all files in a directory, glob(__DIR__.'/*.php') will give you all php files in current directory. But if you need to do this in a production server only use it if you can run it as a command line function since the web server not should have write access to the files

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部