search

六月三十号,PHP.net发布了5.3.0版本的Release版本。
一直没有时间来关注,今天特别去看了一下,增加了很多有意义的新特性:比如众望所归的命名空间支持。
原本以为这会在PHP6里才会实现,没想到5.3.0就增加了。在PHP6之前,5.3.0也确实算得上一个比较值得关注的版本了。
简单列举一下比较值得关注的特性,关于全部的更新日志可以参考ChangeLog(http://www.php.net/ChangeLog-5.php#5.3.0)
另外PHP团队提供了一个专题来指导如何将5.2.x的项目迁移到5.3.0,参见http://www.php.net/migration53
由于没有linux的环境,因此只能在win下分析一下,欢迎拍砖。

1、更改mysql的扩展为mysqlnd
  mysqlnd是MySql专为PHP6设计的驱动,采用PHP开源协议,避免了版权争议,并且置于php内部了。仔细对比就会发现5.3.0的windows版本中少了libmysql.dll这个文件,正是因为使用了mysqlnd驱动,因此libmysql.dll这个外部驱动也没必要存在了。使用mysqlnd驱动并不会改变使用mysql或者是mysqli的使用方式,并且会提升一些性能。

2、去掉了ISAPI扩展
  想要在IIS中使用PHP 5.3.0,没办法再像以前那样在IIS添加.php扩展名到php5isapi.dll上了。所以在IIS上使用PHP 5.3.0的方式只有CGI和Fast-CGI两个选择了。现在还有谁会用老古董的CGI么,所以只能用Fast-CGI了。

由于手头只有vista环境,下面将在介绍IIS7下使用PHP 5.3.0

1)打开IIS的CGI功能

    依次打开 控制面板-程序-打开或关闭Windows功能,打开 Internet信息服务-万维网服务-应用程序开发功能-CGI(选中此选择框后将同时打开CGI和FastCgi功能)

   

2)添加PHP 5.3.0支持

   打开IIS管理器,选择服务器(应用到所有网站)或者某个网站(应用到单个网站)。选择处理程序映射选项,将会列出所有程序映射。在右侧选择添加模块映射。然后路径填写为*.php(如果要处理其他扩展名,依次添加即可),模块选择FastCgiModule,可执行文件选择PHP 5.3.0下的php-cgi.exe即可。名称自定,如需要更多设置,点击请求限制。

   

3)设置php.ini

    php.ini放置于PHP 5.3.0文件夹下即可,设置方式和以前没有什么不同。不过要设置date.timezone = Asia/Shanghai,不然运行时会报错。ok,然后就可以看phpinfo()了,需要什么扩展,自行打开就行了。

3、命名空间支持
  在PHP 5.3.0中终于添加了命名空间支持。PHP程序员一直的都是很傲气的,因为他们有众多强大无比的开源项目(Drupal、Wordpress等等),可是提到命名空间却不得不无奈。现在PHP团队终于将本来构思在PHP6中的命名空间提早到了PHP 5.3.0。在PHP中使用命名空间同样使用namespace关键字。

4、静态延迟绑定
  在PHP 5.3.0增加了静态延迟绑定支持。增加了使用static关键字和get_called_class()等几个函数来实现访问继承树中的特定成员。

5、闭包
  PHP 5.3.0中增加了对闭包的支持,可以方便的使用匿名函数或者Lambda表达式。可以将函数放在一个变量中。这个对笔者来讲才是最期待的功能。

6、垃圾回收机制
  在PHP 5.3.0中增加了可选的垃圾回收机制。作为可选的功能,看来PHP团队对这个功能也不怎么上眼。毕竟对于Web来说,页面执行完毕后,所有的资源全部释放掉了,也没必要特意的处理资源回收。聊胜于无吧。

7、优化了大量的函数,修复了大量的bug
  根据PHP.NET的说法,修复了超过140个Bug。增加了若个扩展。另外优化了很多已知函数的性能,比如md5()速度就提升了10%以上。关于全部的更新,可以参考ChangeLog(http://www.php.net/ChangeLog-5.php#5.3.0)

 

5.3.0这个版本提供了大量的新功能,并且对整体性能进行了大幅度的优化,整体性能的提升到达10%左右。所以,可能的话,还是赶快把项目升级到5.3.0吧。

参考:

ChangeLog

Migrating from PHP 5.2.x to PHP 5.3.x

php 5.3带来了什么

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version