"/> ">
Home >Backend Development >PHP Tutorial >PHP self-study no00005 data type string type
<!--字符串型有3种定义方式,单引号(')双引号(")界定符(<<<)--> <!--单引号原样输出,双引号赋值输出--> <?php $zws = '只会看到一遍'; //这句只声明变量不会输出 echo '$zws'; //这是单引号原样输出 echo "<br />"; //这样换行可以否 echo "$zws"; //双引号赋值输出 ?>
The above has introduced the PHP self-study no00005 data type string type, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.