How to add extra whitespace in PHP?

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

    when you add more space between double quotes or single quotes PHP takes only one white space ,so if you want to add more white space between words or strings use tab '\t' sequence

    echo "\t";
    

提交回复
热议问题