在wordpress中,我使用PHP include调用这个文件,它工作得很好,直到文件中有任何£符号。此时,£符号将被替换为?被旋转了45度的正方形。我尝试用£和£替换of符号,这两个符号的输出是相同的。
有人有什么想法吗?php include './wp-content/menu_content.txt'?>在wordpress中调用该文件-我尝试将其命名为txt文件、ph
如何删除/删除PHP中字符串的所有空格和&符号?我有一个类似于$string = "this is my string & this also";的字符串,输出应该是"thisismystringthisalso"<?php $string = preg_replace('/\s+/', '', $string);