php5.3 注意事项说明_PHP教程
推荐:php ios推送(代码)本篇文章是对php ios推送进行了详细的分析介绍,需要的朋友参考下 复制代码 代码如下: ?php //php需要开启ssl(OpenSSL)支持 $apnsCert = ck.pem;//连接到APNS时的证书许可文件,证书需格外按要求创建 $pass = 123456;//证书口令 $serverUrl = ssl://gateway.sandbox.pus
php5.3
新特性
1.支持命名空间(namespace)
5.3以前
<?php
class Zend_Db_Table_Select {
//表示当前这个类文件位于Zend/Db/Table下
}
5.3
<?php
namespace Zend/Db/Table
class Select {
}
2.支持延迟静态绑定
5.3以前(__CLASS__获得类名)self::who()
<?php
class A {
public static function who() {
echo __CLASS__;
}
public static function test() {
self::who();
}
}
class B extends A {
public static function who() {
echo __CLASS__;
}
}
B::test();
?>
输出A
5.3(__CLASS__获得类名)static::who();
<?php
class A {
public static function who() {
echo __CLASS__;
}
public static function test() {
static::who(); // 这里实现了延迟的静态绑定
}
}
class B extends A {
public static function who() {
echo __CLASS__;
}
}
B::test();
?>
输出B
3.支持goto语句
多数计算机程序设计语言中都支持无条件转向语句goto,当程序执行到goto语句时,即转向由goto语句中的标号指出的程序位置继续执行。
4.支持闭包
<?php
$msg = "hello";
$callback = function() use($msg){
print_r($msg);
}
$msg = "hello world!";
callback($callback);
输出
hello
hello world!
5.新增魔术方法__callStatic()
PHP中原本有一个魔术方法__call(),当代码调用对象的某个不存在的方法时该魔术方法会被自动调用。
新增的__callStatic()方法则只用于静态类方法。当尝试调用类中不存在的静态方法时,__callStatic()魔术方法将被自动调用。
6.新增一种常量定义方式(有时代码出错,如undefined HE,你要看看是否支持const)
<?php
const CONSTANT = 'Hello World';
分享:file_get_contents("php://input", "r")实例介绍解释不清,直接上例子 index.html 复制代码 代码如下: form action=action.php method=post input type=text name=userName id=userName /br/ input type=text name=userPass id=userPass /br/ input type=submit value=ok / /form action.php 复制代码 代码如下: ?php
- 相关链接:
- 教程说明:
PHP教程-php5.3 注意事项说明。