https://jingyan.baidu.com/article/3f16e003147ea42590c10349.html 场景:一篇word文档中,想要全选更改字体,使得中文全部为“宋体”,英文全部为“Times New Roman”,更改完成后发现标点也随之更改,原本宋体的标点在选择“Times New Roman”后,也随英文字体一起变成了新罗马,且我们在查找替换时候很难替换成宋体,主要问题就集中的双引号上面,那么我们该如何解决呢? 工具/原料 word 电脑 方法/步骤 …
如果一个变量放在单引号中,会被当作字符串来处理,如果是放在双引号中,则会被当值一个变量来处理(此时可以用 {}扩起来,也可以不用). <?php $txt = "hello, this is from txt"; echo 'the word is {$txt}'; //the word is {$txt} echo "the word is {$txt}"; //the word is hello, this is from txt…