PHP6
Rasmus Lerdorf 对于 PHP6 的一些期望:
2. Remove magic_quotes_*
3. Add input filter extension which will include a mechanism for
application developers to very easily turn it off which would swap
the raw GPC arrays back in case the site had it turned on by default.
4. Include an opcode cache by default. A lot of work has gone into
pecl/apc recently, but I am not hung up on which one goes in.
5. Remove safe_mode and focus on open_basedir
6. Remove some stuff that has been marked deprecated since PHP 3/4
A couple of others that we could consider, but I don't actually think
wins us much apart from academic purity (which I have never been all
that keen on) are:
7. Make identifiers case-sensitive
8. Remove various function aliases当前 PHP 社群讨论的比较火热的话题,相关讨论参见:
PHP 6.0 Ingredients
The Voice of Reason in PHP
mailing.www.php-dev
开始我的戎马生涯
今天早上去亚运村车市提车了,起亚 1.3AT,车价 76800,全部办下来一共 87400, 银灰色,下午一切办妥,加满油,开始进入磨合期,正式开始我的戎“马”生涯了 ![]()
PHP Markdown Extra
This is *true* markdown text.
这种语法即是 Markdown 语法,后台的程序会将这种语法解析成 HTML 代码输出给客户端浏览器:
This is <em>true</em> markdown text.
这样,网络写作的人所面对的是更加简单易用的格式化语法,而不用去学习复杂的 HTML 标签代码(当然目前很多系统所提供的 BBCode 功能也在一定程度上方便了用户),如今这种语法在 wiki 中得到了普及应用。PHP Markdown Extra 就是一个将 Markdown 语法转换成 HTML 代码的解析器,使用 PHP 编写的 BLOG 系统其实可以尝试应用 PHP Markdown Extra,让写作人有更好的用户体验。目前 PHP Markdown Extra 已经用于 WordPress 1.2 及之后的版本、bBlog 的最新版本等等。

