php5.3
新特性1.支援命名空間(namespace)5.3以前
class zend_db_table_select {
//表示當前這個類檔案位於zend/db/table下
5.3namespace zend/db/table
class select {
2.支援延遲靜態繫結5.3以前(__class__獲得類名)self::who()
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();
輸出a5.3(__class__獲得類名)static::who();
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();
輸出b3.支援goto語句多數計算機程式語言中都支援無條件轉向語句goto,當程式執行到goto語句時,即轉向由goto語句中的標號指出的程式位置繼續執行。
4.支援閉包
$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)
const constant = 'hello world';
php5 3使用手冊,php5 3 注意事項說明
本篇文章是對php5.3中需要注意的一些事項進行了詳細的分析介紹,需要的朋友參考下 php5.3 新特性1.支援命名空間 namespace 5.3以前 class zend db table select 表示當前這個類檔案位於zend db table下 5.3namespace zend db...
php5 3管理操作
php 5.3.3 中 php fpm 的重啟 終止操作命令 php 5.3.3 原始碼中已經內嵌了 php fpm,不用象以前的php版本一樣專門打補丁了,只需要在configure的時候新增編譯引數即可。關於php fpm的編譯引數有 enable fpm with fpm user www w...
php5 3 廢棄函式小結
在php5.3被放棄的函式有 ereg 直接用mb ereg代替,或是p代替,但是匹配規則需要用 包括起來 eregi preg match代替,在規則後加上i,如 preg match 程式設計客棧 file ereg replace set magic quotes runtwww.cppcns...