這是我的完整網頁,直接從here取得php代碼。然而,頁面上的所有文本都呈現在一行上?換行符在PHP中不起作用?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<?php
echo "This spans
multiple lines. The newlines will be
output as well";
echo "This spans\nmultiple lines. The newlines will be\noutput as well.";
?>
</body>
</html>
@ Anthony-
的工作 - 但我仍然很疑惑爲什麼經常\ n新行不會,考慮它是直接從文檔? – Yarin 2010-11-22 02:32:48
@Yarin:請參閱我們的其他答案以獲得更清晰的解釋。 – BoltClock 2010-11-22 02:33:31
這個鏈接是指我所指的:http://php.net/manual/en/function.echo.php – Yarin 2010-11-22 02:34:32