$j*=3;
等价于
$j=$j*3;
heredoc长字符串
<?php
$author="Scott Aams";
$out=<<<_END
test this is the first column
this is the second column
- $author .
_END;
echo $out;
可以讲一整段html语言直接写在heredoc里面
预定义变量
神奇变量
__LINE__
__FILE__
__DIR__
__FUNCTION__
__CLASS__
__METHOD__
__NAME SPACE__
超级全局变量
$GLOBALS
$_SERVER
$_GET
$_POST
$_FILE
$_COOKIE
$_SESSION
$_NEW
过滤超级全局变量
htmlentities()
filter_input()
变量的作用域
函数外创建的变量对于函数来说只能被非函数的代码访问
原文:http://blog.51cto.com/issak/2166714