当前位置:Gxlcms > PHP教程 > 【PHP字符串】今天遇到一个很神奇的有关问题,请大家帮忙

【PHP字符串】今天遇到一个很神奇的有关问题,请大家帮忙

时间:2021-07-01 10:21:17 帮助过:6人阅读

【PHP字符串】今天遇到一个很神奇的问题,请大家帮忙
错误一:

echo 'echo $rst4[$i]["tb_restore_content"]:
';
echo $rst4[$i]['tb_restore_content']."

";
echo 'echo $rst4[$i]["tb_restore_content"]的内容:
';
echo '【回复:sasasa】 【回复:sasasa】 0
1

2 ';

运行结果

由于直接输出变量a时有些标签没有被解析,由于有给它加了双引号,又出现了以下错误
错误二

echo is_string($rst4[$i]['tb_restore_content']);
echo "$rst4[$i]['tb_restore_content']";

结果

------解决思路----------------------
为什么呢,看不出来,找出原因了吗?
------解决思路----------------------
是很神奇!
对于错误一,神奇在于你没把问题说清楚
对于错误二,神奇在于你没按 php 书写规则书写
echo "$rst4[$i]['tb_restore_content']";
应写作
echo "{$rst4[$i]['tb_restore_content']}";

echo $rst4[$i]['tb_restore_content'];

------解决思路----------------------
有什么不对吗?

人气教程排行