How to add extra whitespace in PHP?

后端 未结 14 2013
生来不讨喜
生来不讨喜 2020-12-02 22:44

I was wondering how can I add extra whitespace in php is it something like \\s please help thanks.

Is there a tutorial that list these kind of things th

14条回答
  •  一个人的身影
    2020-12-02 23:09

    to make your code look better when viewing source

    $variable = 'foo';
    echo "this is my php variable $variable \n";
    echo "this is another php echo here $variable\n";
    

    your code when view source will look like, with nice line returns thanks to \n

    this is my php variable foo
    this is another php echo here foo
    

提交回复
热议问题