时间:2021-07-01 10:21:17 帮助过:23人阅读
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 ';
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'];
是很神奇!
对于错误一,神奇在于你没把问题说清楚
对于错误二,神奇在于你没按 php 书写规则书写
echo "$rst4[$i]['tb_restore_content']";
应写作
echo "{$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'];
那你把问题仔细的描述一下
如果涉及变量,要分别给出变量的值
是很神奇!
对于错误一,神奇在于你没把问题说清楚
对于错误二,神奇在于你没按 php 书写规则书写
echo "$rst4[$i]['tb_restore_content']";
应写作
echo "{$rst4[$i]['tb_restore_content']}";
或
echo $rst4[$i]['tb_restore_content'];
那你把问题仔细的描述一下
如果涉及变量,要分别给出变量的值
$a='【回复:sasasa】 0 2'
echo '【回复:sasasa】 0 2'则没有任何问题
有什么不对吗?