GG资源网

以编程方式在WordPress中编辑PHP文件

问题描述:

I am trying to edit a few PHP codes lines in my WordPress theme files with a snippet of PHP code, though I am stuck and have been struggling to do this for a while with this code.

I have been trying to tweak this piece of code to do the job but unfortunately without luck.

I am expecting that this code should replace some text as illustrated in the file with the described path but it doesn\'t work.

网友观点:

Where do I start... let me count the ways.

Lets see when you run this it does:

Then it checks:

Which is obviously true, or we would have gotten some errors already. So that is basically always true. Which means you call this update_GTour_theme_files(); itself again. Repeat the above steps a infinite number of times.

So that is obviously wrong. If you are calling this I would expect your browser to lockup.

So lets fix this up (single file):

This will only update the one file, to do more then that you need to use scandir, glob or SPL DirectoryIterator / FilesystemIterator.

PS your \\\"main\\\" or \\\"big\\\" problem (besides the recursion) is right here:

These $ in /$page_menu_transparent are not escaped so the are treated as REGEX. Which means they match the end of the string, which makes no sense. I also added some vaiable space \\s*=\\s* and the ; semi-colon otherwise $page_menu_transparent = 1345; will become $page_menu_transparent = 0;. This may have some impact if it\'s in () or an array etc. (anything without the ;)

For all files in a given folder and it\'s subfolders

This uses RecursiveDirectoryIterator so it should look through all sub folders.

But this is all untested so be very careful. If you mess your files up don\'t come blaming me, you were warned.

That said Enjoy~

由于网站搬家,部分链接失效,如无法下载,请联系站长!谢谢支持!
1. 带 [亲测] 说明源码已经被站长亲测过!
2. 下载后的源码请在24小时内删除,仅供学习用途!
3. 分享目的仅供大家学习和交流,请不要用于商业用途!
4. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
5. 本站所有资源来源于站长上传和网络,如有侵权请邮件联系站长!
6. 没带 [亲测] 代表站长时间紧促,站长会保持每天更新 [亲测] 源码 !
7. 盗版ripro用户购买ripro美化无担保,若设置不成功/不生效我们不支持退款!
8. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
9. 如果你也有好源码或者教程,可以到审核区发布,分享有金币奖励和额外收入!
10.如果您购买了某个产品,而我们还没来得及更新,请联系站长或留言催更,谢谢理解 !
GG资源网 » 以编程方式在WordPress中编辑PHP文件

发表回复

CAPTCHAis initialing...