易微
2016-07-27 11:48
<?php
$str_string1='甲问:“你在哪里学的php?”';
$str_string2="乙毫不犹豫地回答:‘当然是慕课网咯!’";
$str_string3='甲问:\'能告诉我网址吗?\'';
$str_string4="乙答道:\“www.imoocc.com\”";
echo $str_string1;
echo "<br />";
echo $str_string2;
echo "<br />";
echo $str_string3;
echo "<br />";
echo $str_string4;
echo "<br />";
?>
$str_string4里面 如果要用中文字符的话 就不用转义了 系统会把他当成字符串输出出来 要是英文字符串 才需要转义
string4里面的双引号不是英文格式的
PHP入门篇
455956 学习 · 6306 问题
相似问题