PHP 5.3 的新特性

Posted on 12th December 2008 by Nio in 程序人生 - Tags: ,

据称,PHP 5.3 将在年底推出,IBM 有两篇文章讲述了此版本的新特性:
What's new in PHP V5.3, Part 1: Changes to the object interface
What's new in PHP V5.3, Part 2: Closures and lambda functions
最引人关注的莫过于支持类似于 JavaScript 那样的匿名函数了,如:


<?php
$string "Hello World!";
$closure = function() use ($string) { echo $string; };
$closure();
?>

此代码将输出:


Hello World!

PHP 里边有很多函数都支持回调函数,有了匿名函数的支持,就可以不用专门去定义一个函数了。

1 Comment »

  1. 好久不来,发现改版了,这界面有点90后的感觉了

    Comment by Lcs — December 17, 2008 @ 8:53 am

Leave a comment