How to add extra whitespace in PHP?

后端 未结 14 1905
生来不讨喜
生来不讨喜 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:33

    pre is your friend.

    <pre> 
    <?php // code goes here
    
    ?>
    </pre>
    

    Or you can "View Source" in your browser. (Ctrl+U for most browser.)

    0 讨论(0)
  • 2020-12-02 23:34

    Use str_pad function. It is very easy to use. One example is below:

    <?php
    
    $input = "Alien";
    echo str_pad($input, 10);                      // produces "Alien     "
    
    ?>
    
    0 讨论(0)
提交回复
热议问题