返回列表 發帖

變數宣告

  1. <html>
  2.         <head>
  3.                 <title>變數宣告</title>
  4.                 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5.         </head>
  6.         <body>
  7.         <?php
  8.                 $x="我";
  9.                 $X="愛";
  10.                 $x1="PHP";
  11.                 $x_1=123;
  12.             echo $x.$X.$x1.$x_1;
  13.         ?>       
  14.         </body>
  15. </html>
複製代碼

返回列表