php echo换行\n无效,不能换行的解决方法
php语句
<?php echo 'hello\n'; echo 'world'; ?>
中的换行符\n输出无效,无法换行,解决方法是把单引号改为双引号:
<?php echo "hello\n"; echo "world"; ?>这样就可以了!