Files
freeCodeCamp/guide/chinese/php/syntax/index.md
2018-10-16 21:32:40 +05:30

26 lines
513 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Syntax
localeTitle: 句法
---
## 句法
PHP是一种允许您在其他静态网页中包含动态内容的语言。它是用html内联编写的只需将.html文件重命名为.phpweb-server必须安装php才能开始使用。
```PHP
<!DOCTYPE html>
<html>
<head>
<title>PHP Example</title>
</head>
<body>
<h1>PHP Example</h1>
<?php
echo "Hello World from PHP!";
?>
</body>
</html>
```
#### 更多信息:
* [php.net - PHP文档](https://secure.php.net/docs.php)