Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

The PHP.cc:
PHP 5.5: Out-of-the-Box Bytecode Cache
Jun 25, 2013 @ 14:04:14

In a new post to their site, the PHP.cc (well, Sebastian Bergmann) takes a look at the bytecode caching feature that's included in the latest release of PHP, version 5.5.

PHP is an interpreted language. The default PHP runtime, the one that can be obtained from php.net, compiles PHP sourcecode to an intermediate representation called PHP bytecode which is then executed. A bytecode cache stores this compiled representation of PHP sourcecode in shared memory. This eliminates the need to load and compile sourcecode on each request which leads to a significant increase in performance (up to 70% more requests per second).

He looks some at "the past" of PHP and how it made it up from the world of PHP 4.x to PHP 5.4 and the de-facto bytecode cache before now, APC. With the introduction of PHP 5.5, though, developers have access to an integrated version of the ZendOptimizer+ cache built right into the language. They include a little bit of documentation about how to enable it and how to install it via PECL if it's not already built in.

tagged: bytecode cache zendoptimizer language included pecl

Link: http://thephp.cc/viewpoints/blog/2013/06/php-5-5-out-of-the-box-bytecode-cache

Brandon Savage's Blog:
Bug-Free: Your Bug-Fixing Toolkit (Part 1 of N)
Oct 16, 2008 @ 15:29:57

Brandon Savage has the first part of a series posted (with N parts) showing off some of the tools that PHP already has built in to make your debugging life easier.

PHP has a large number of tools for fixing bugs and resolving underlying issues. But many people don't know what they are, and some of them are extensions requiring installation in order to work. In this series, we'll explore some features for debugging PHP scripts, from the most basic to more advanced.

He looks at three of the most basic ones (and ones that most developers I know out there use every day) - var_dump, print_r and var_export. Examples of each in use are included...

tagged: debug tool included vardump printr varexport tutorial

Link:

Andi Gutmans' Blog:
Zend Framework to be part of Ubuntu!
Feb 29, 2008 @ 17:11:59

Andi Gutmans has some great news for Ubuntu users - the Zend Framework will be included in a future version of the linux distribution (Hardy Heron, Ubntu 8).

We are very proud to be an integral part of the Ubuntu distribution going forward. This is an important step towards making Zend Framework accessible to a broader audience and by working closely with the MOTUs we are able to ensure a positive end-user experience.

Andi also points out some of the stats from the framework's life so far: 4M downloads of Zend Framework, 500K of them unique and only growing stronger.

tagged: zendframework linux distribution ubuntu bundle included

Link:

WebRefernece:
Script GUI for PHP
Nov 08, 2006 @ 15:26:00

Lee Underwood shares a handy bit of software in this quick article on Developer.com - a GUI program that helps you execute your PHP scripts on Windows without the setup time of something like XAMPP.

There's no need to install a server and PHP and then try to coordinate them in order to get them to work together. Script GUI comes in one compact package. It includes a server, which is only available to the built-in browser and is a nice security feature. In addition, it supports CGI, virtual hosts, directory aliases, custom error documents and understands most commands in .htaccess files.

He tell how it works (pretty much just install and go) and how it can be configured to work with virtual hosts. Best of all, it already comes with the latest version of PHP for Windows and can interface with several of the popular databases out there.

tagged: gui execute script local windows xampp included database gui execute script local windows xampp included database

Link:

WebRefernece:
Script GUI for PHP
Nov 08, 2006 @ 15:26:00

Lee Underwood shares a handy bit of software in this quick article on Developer.com - a GUI program that helps you execute your PHP scripts on Windows without the setup time of something like XAMPP.

There's no need to install a server and PHP and then try to coordinate them in order to get them to work together. Script GUI comes in one compact package. It includes a server, which is only available to the built-in browser and is a nice security feature. In addition, it supports CGI, virtual hosts, directory aliases, custom error documents and understands most commands in .htaccess files.

He tell how it works (pretty much just install and go) and how it can be configured to work with virtual hosts. Best of all, it already comes with the latest version of PHP for Windows and can interface with several of the popular databases out there.

tagged: gui execute script local windows xampp included database gui execute script local windows xampp included database

Link:

Pierre's Blog:
XMLWriter in PHP 5.1.2
Dec 07, 2005 @ 13:35:02

From Pierre today, there's this quick post concerning the inclusion of XMLWriter in PHP 5.1.2.

XMLWriter is finally bundled in php5. It will available and enabled by default in the next PHP release (5.1.2).

With XMLReader, XMLWriter is a really nice addition to the xml extensions.

The XMLWriter extension provides fast, non-cached, forward-only means of generating streams or files containing XML data.

tagged: xmlwriter 5.1.2 included xmlwriter 5.1.2 included

Link:

Pierre's Blog:
XMLWriter in PHP 5.1.2
Dec 07, 2005 @ 13:35:02

From Pierre today, there's this quick post concerning the inclusion of XMLWriter in PHP 5.1.2.

XMLWriter is finally bundled in php5. It will available and enabled by default in the next PHP release (5.1.2).

With XMLReader, XMLWriter is a really nice addition to the xml extensions.

The XMLWriter extension provides fast, non-cached, forward-only means of generating streams or files containing XML data.

tagged: xmlwriter 5.1.2 included xmlwriter 5.1.2 included

Link:


Trending Topics: