How to add extra whitespace in PHP?

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

    To render more than one whitespace on most web browsers use   instead of normal white spaces.

    echo "

    Hello     punt"; // This will render as Hello Punt (with 4 white spaces) echo "

    Hello punt"; // This will render as Hello punt (with one space)

    For showing data in raw format (with exact number of spaces and "enters") use HTML

     tag.

    echo "
    Hello        punt
    "; //Will render exactly as written here (8 white spaces)

    Or you can use some CSS to style current block, not to break text or strip spaces (dunno bout this one)

    Any way you do the output will be the same but the browser itself strips double white spaces and renders as one.

提交回复
热议问题