FirePHP enables you to log to your Firebug Console using a simple PHP method call.
All data is sent via a set of X-FirePHP-Data response headers. This means that the debugging data will not
... [More] interfere with the content on your page. Thus FirePHP is ideally suited for AJAX development where clean JSON or XML responses are required. [Less]
XCache is a open-source opcode cacher, which means that it accelerates the performance of PHP on servers. It optimizes performance by removing the compilation time of PHP scripts by caching the
... [More] compiled state of PHP scripts into the shm (RAM) and uses the compiled version straight from the RAM. This will increase the rate of page generation time by up to 5 times as it also optimizes many other aspects of php scripts and reduce serverload. [Less]
eAccelerator is a further development of the mmcache PHP accelerator and encoder. It increases the performance of PHP scripts by caching them in a compiled state, so that the overhead of compiling is almost completely eliminated.
The php/Java bridge is an optimized, XML-based network protocol, which can be used to connect a native script engine, PHP, with a Java or ECMA 335 virtual machine. It is more than 50 times faster than
... [More] local RPC via SOAP, requires less resources on the web-server side, and it is faster and more reliable than communication via the Java Native Interface. [Less]
ffmpeg-php is an extension for PHP that adds an easy to use, object-oriented API for accessing and retrieving information from video and audio files. It has methods for returning frames from movie
... [More] files as images that can be manipulated using PHP's image functions. This works well for automatically creating thumbnail images from movies. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the video formats supported by ffmpeg (mov, avi, mpg, wmv...) [Less]
xLog is a PHP extension that allows extended logging of PHP errors, including Fatal errors. Output typically includes referral, GET values, URL, and a full backtrace. Additional information can be
... [More] included via custom variables by the developer at runtime. [Less]
An MVC application framework and extension library for Zend Framework.
Zym Engine (ZE) is an extensible plugin framework that acts as the base for which Zend Framework applications could be built
... [More] in a reusable and re-distributable manner.
ZE allows easy integration of applications by unifying the design of aspects such as ACL, User handling, i18n, l10n, etc... By unifying the design through established conventions, developers can create reusable and redistributable modules thus reducing development time.
Zym Engine is formally known as Zym Framework or Zym Project. [Less]
ZendX - The Zend Framework Extentions LibraryPurposeZendX was created with the intention of improving and building upon the already solid Zend Framework. Whilst the Zend Framework contains many great
... [More] features, I found the need to extend upon it's functionality whilst working on a recent project. Rather than mix and match frameworks I decided to create a repository of useful classes that built upon existing Zend Framework functionality.
The most notable additions to the library at present are the porting of the Java collections framework across to PHP and a RESTful style PHP web services implementation reminiscent of .NET web services.
FeaturesCurrently the ZendX library contains the following features:
Partial port of the Java collections framwork to PHP .NET style RESTful web servi [Less]