PHP 基本的PHP语法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 基本的PHP语法相关的知识,希望对你有一定的参考价值。

<html>
 
<body>
 
<?php
 
echo " oheon.com";
 
?>
 
</body>
 
</html>
 
To make a single-line comment, use //. To make a large comment block, use  /* and */. See the example below:
 
<html>
 
<body>
 
<?php
 
//This is a comment
 
/*
 
This is
 
a comment
 
block
 
*/
 
?>
 
</body>
 
</html>

以上是关于PHP 基本的PHP语法的主要内容,如果未能解决你的问题,请参考以下文章

php基本语法

php学习day3--php基本语法与变量

PHP学习笔记 ---- PHP简介以及基本语法

PHP极基本语法

PHP 基本的PHP语法

PHP基本语法