php zend

CodeForest.net: Android JSON-RPC client and PHP Zend Framework s...

PHPDeveloper.org  Wed, 07/13/2011 - 09:14

In a recent post to CodeForest Luka Peharda shows you how to create a JSON-RPC frontend for your application based on the Zend Framework.


 

Easily build cross-platform, native mobile apps (iOS, Android, B...

Planet PHP  Mon, 06/27/2011 - 12:55

Last month I blogged about the release of Adobe Flash Builder for PHP 4.5.

Today Adobe released version 4.5.1 which completes last month’s launch with optimized iOS (iPhone/iPad) and Blackberry support!


 

Rapidly deliver native, connected mobile applications with Adobe...

Planet PHP  Mon, 04/11/2011 - 16:07

imageBy 2013, the number of internet-connected mobile devices will exceed the num


 

Book Report: You Want to Do What with PHP? - Zend Developer Zone

Planet PHP  Tue, 12/28/2010 - 13:31

My friend Kevin Schroeder recently released his latest book “You Want to Do What with PHP ?” This book isn’t for everyone, click on inside and I’ll help you decide if it’s right for you.


 

Getting Started with MongoDB and PHP - Zend Developer Zone

Planet PHP  Mon, 06/07/2010 - 10:34

Schema-less database systems like MongoDB are quickly becoming popular with Web developers on account of their flexibility, simplicity and easy integration with modern Web technologies such as JSON.

This article introduces you to MongoDB and shows you how to install it, set up an initial data store, and access it with PHP.


 

PHP 5.3.99-dev and DTrace Part I - David Soria Parra

Planet PHP  Tue, 04/27/2010 - 11:10

For those not following the PHP development. We backported the DTraces probes from the abandoned PHP 6.0 branch, back to the new trunk PHP 5.3.99-dev.

It is called 5.3.99 because the PHP dev community has not decided yet on a version number (5.4 or 6.0).

To compile PHP with DTrace, on Solaris or Mac OS do:

$ svn co http://svn.php.net/repository/php/php-src/trunk php $ cd php $ ./buildconf --force $ ./configure --enable-dtrace $ make

To check if your PHP has DTraces probes enabled, you can check the phpinfo() using


 

Trait-like Functionality for PHP - Zend Developer Zone

Planet PHP  Tue, 04/06/2010 - 13:55

Eliminating repetition and encouraging code reuse are central tenets of software development. PHP’s lack of multiple inheritance means sometimes there are tough design choices to be made when similar functionality is required in separate branches of the class heirarchy.

As proposed in the Horizontal Reuse for PHP RFC, traits offer a means of duplicating functionality in independent classes.

In this post, I’ll be detailing an approach that offers trait-like functionality to your objects in an intuitive and straightforward way.


 

Joey Rivera's Blog: Caching using PHP/Zend_Cache and MySQL

PHPDeveloper.org  Tue, 11/10/2009 - 14:47

New on his blog today Joey Rivera has posted this tutorial about using the Zend_Cache component of the Zend Framework to boost the performance of your site.