语法
<?PHP
//code here?>
变量
以$开头字符串
并置运算符 . echo $txt1 . " " . $txt2计算字符串长度 strlen() 空格算字符 :strlen($txt) strlen("hello world!")字符串内检索一段字符串或一个字符 strpos()返回第一个匹配的位置若无则返回false,字符串首个位置为0非1:strpos("hello world","world") 输出6循环
循环遍历数组 foreach(array as value){} : foreach ($arr as $value){}表单
$_POST变量$_POST变量是一个数组,收集来自method="post"的表单中的值(任何人不可见,无长度限制)<form action="welcome.php" method="post">Name:<input type="text" name="name"/>Age:<inpu type="text" name="age"/><input type="submit"/></form> 点击提交后表单数据送往welcome.php文件提交后发送url类似http://www.w3school.com.cn/welcome.phpwelcome.php文件Welcom <?php echo $_POST["name"]; ?>.<br />You are <?php echo $_post["age"]; ?> years old.$_GET变量
$_GET变量是一个数组,收集来自method="get"的表单中的值(会显示在浏览器的地址栏,最多100字符)<form action="welcome.php" method="get">Name:<input type="text" name="name"/>Age:<input type="text" name="age"/><input type="submit"/></form>提交后发送url类似http://www.w3school.com.cn/welcome.php?name=Peter&age=37welcome.php文件Welcome <?php echo $_GET["name"]; ?>.<br />You are <?php echo $_GET["age"]; ?> years old!$_REQUEST变量
Welcome <?php echo $_REQUEST["name"]; ?>.<br />You are <?php echo $_REQUEST["age"]; ?> years old!