为什么我用"\n"不能在PHP代码中换行呢? 5
$person=array('Edison','Wankel','Crapper');$creator=array('Lightbulb'=>'Edison','Rota...
$person = array('Edison', 'Wankel', 'Crapper');
$creator = array('Light bulb' => 'Edison',
'Rotary Engine' => 'Wankel',
'Toilet' => 'Crapper')
foreach ($person as $name) {
echo "Hello, $name\n";
}
foreach ($creator as $invention => $inventor) {
echo "$inventor created the $invention\n";
}
书上的结果是:
Hello, Edison
Hello, Wankel
Hello, Crapper
Edison created the Light bulb
Wankel created the Rotary Engine
Crapper created the Toilet
我在WEB服务器上运行的结果是:
Hello, Edison Hello, Wankel Hello, Crapper Edison created the Light bulb Wankel created the Rotary Engine Crapper created the Toilet
为什么不能换行呢? 展开
$creator = array('Light bulb' => 'Edison',
'Rotary Engine' => 'Wankel',
'Toilet' => 'Crapper')
foreach ($person as $name) {
echo "Hello, $name\n";
}
foreach ($creator as $invention => $inventor) {
echo "$inventor created the $invention\n";
}
书上的结果是:
Hello, Edison
Hello, Wankel
Hello, Crapper
Edison created the Light bulb
Wankel created the Rotary Engine
Crapper created the Toilet
我在WEB服务器上运行的结果是:
Hello, Edison Hello, Wankel Hello, Crapper Edison created the Light bulb Wankel created the Rotary Engine Crapper created the Toilet
为什么不能换行呢? 展开
4个回答
展开全部
\n 是在控制台上面输出的换行。
在浏览器上面的换行符是 <BR />,\n 好像输出一个空格。
在浏览器上面的换行符是 <BR />,\n 好像输出一个空格。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
确实不能换行,使用echo "<br>";这个可以完成换行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
- -
你的输出是在浏览器上的啊……
用"<br>"……
你的输出是在浏览器上的啊……
用"<br>"……
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用<br/>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询