第五章语法结构

本章目录
 
从HTML中分离
 
命令分隔符
 
变量类型
 
初始化变量
变量作用域
 
动态变量
 
PHP外部变量
 
类型转换
 
数组处理

PHP的语法主要借鉴于C。也部分参考了Java 和 Perl。

从HTML中分离

有三种方法分离HTML并进入"PHP程序模式":

Example 5-1. Ways of escaping from HTML

1.  <? echo("this is the simplest, an SGML processing instruction\n"); ?>


2.  <?php echo("if you want to serve XML documents, do like this\n"); ?>


3.  <script language="php">

      echo("some editors (like FrontPage) don't like processing instructions");

    </script>