How to add extra whitespace in PHP?

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

    PHP is an easy language with multiple solutions. A Quick Solution would be using Double Quotes " ". Example Below.

    $var1 = "Hello";
    $var2 = "World";
    $var3 = "How";
    $var4 = "are";
    $var5 = "you";
    $var6 = "?";
    $var7 = ",";
    
    echo "$var1 $var2$var7 $var3 $var4 $var5$var6";
    
    //Output: Hello World, How are you?
    

提交回复
热议问题