我不知道如何在PHP中回显新行。我已经尝试过echo "\n",但是它不起作用。

我想在以下代码中回显新行。

代码:

if (file_exists($fName)) {
   echo "CreationTime: ".$CreationTime.
        "CurrentTime: ".$CurrentTime.
        "after ".($fLifeTime)." Days from Creation: ".$fAge;
   }

最佳答案

如果您正在浏览器中查看此输出,则必须使用<br />标记,或者将<pre>放在回显之前。

对于新行示例。

if (file_exists($fName)) {
   echo "CreationTime: ".$CreationTime. "<br />".
        "CurrentTime: ".$CurrentTime. "<br />" .
        "after ".($fLifeTime)." Days from Creation: ".$fAge;
   }

前例
 if (file_exists($fName)) {
      echo "<pre>";
       echo "CreationTime: ".$CreationTime. PHP_EOL .
            "CurrentTime: ".$CurrentTime. PHP_EOL .
            "after ".($fLifeTime)." Days from Creation: ".$fAge;
       }

关于php - 如何在浏览器中回应换行符?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10635539/

10-13 02:48