php语句

<?php
echo 'hellon';
echo 'world';
?>

中的换行符n输出无效,无法换行,解决方法是把单引号改为双引号:

<?php
echo "hellon";
echo "world";
?>

这样就可以了!