freeCodeCamp/guide/chinese/php/syntax/index.md

513 B
Raw Blame History

title localeTitle
Syntax 句法

句法

PHP是一种允许您在其他静态网页中包含动态内容的语言。它是用html内联编写的只需将.html文件重命名为.phpweb-server必须安装php才能开始使用。

<!DOCTYPE html> 
 <html> 
 <head> 
 <title>PHP Example</title> 
 </head> 
 <body> 
 <h1>PHP Example</h1> 
 <?php 
  echo "Hello World from PHP!"; 
 ?> 
 </body> 
 </html> 

更多信息: