两种方法:1.使用双引号中插入单引号 2.使用单引号,但是加上转义字符\ 3.使用eof输出 $a='that\'s ok'; echo $a; echo <<<Eof that's ok Eof; 来源:CSDN作者:wcy19990628链接:https://blog.csdn.net/wcy19990628/article/details/103464237 标签 单引号 php