LogoPhly, boy, phly
the weblog and site of Matthew Weier O'Phinney

Entries tagged as zend framework

Related tags
amsterdam best practices books burlingtonphp conferences cw09 decorators doctrine dojo dpc08 dpc09 dpc10 file_fortune gearman git mvc oop pear personal php phpworks08 programming rest sflive2010 symfony testing webinar zencon08 zend server zendcon zendcon08

Tuesday, August 17. 2010

Autoloading Benchmarks

During the past week, I've been looking at different strategies for autoloading in Zend Framework. I've suspected for some time that our class loading strategy might be one source of performance degradation, and wanted to research some different approaches, and compare performance.

In this post, I'll outline the approaches I've tried, the benchmarking stategy I applied, and the results of benchmarking each approach.


Continue reading "Autoloading Benchmarks"

Posted by Matthew Weier O'Phinney in PHP at 09:30 | Comments (39) | Trackbacks (0)
Defined tags for this entry: best practices, pear, php, zend framework

Thursday, July 1. 2010

Creating Zend_Tool Providers

When I was at Symfony Live this past February, I assisted Stefan Koopmanschap in a full-day workshop on integrating Zend Framework in Symfony applications. During that workshop, Stefan demonstrated creating Symfony "tasks". These are classes that tie in to the Symfony command-line tooling -- basically allowing you to tie in to the CLI tool in order to create cronjobs, migration scripts, etc.

Of course, Zend Framework has an analogue to Symfony tasks in the Zend_Tool component's "providers". In this post, I'll demonstrate how you can create a simple provider that will return the most recent entry from an RSS or Atom feed.


Continue reading "Creating Zend_Tool Providers"

Posted by Matthew Weier O'Phinney in PHP at 09:05 | Comments (7) | Trackbacks (0)
Defined tags for this entry: php, zend framework

Friday, June 4. 2010

State of Zend Framework 2.0

The past few months have kept myself and my team quite busy, as we've turned our attentions from maintenance of the Zend Framework 1.X series to Zend Framework 2.0. I've been fielding questions regularly about ZF2 lately, and felt it was time to talk about the roadmap for ZF2, what we've done so far, and how the community can help.


Continue reading "State of Zend Framework 2.0"

Posted by Matthew Weier O'Phinney in PHP at 10:00 | Comments (26) | Trackback (1)
Defined tags for this entry: git, php, zend framework

Thursday, May 6. 2010

Writing Gearman Workers in PHP

I've been hearing about and reading about Gearman for a couple years now, but, due to the nature of my work, it's never really been something I needed to investigate; when you're writing backend code, scalability is something you leave to the end-users, right?

Wrong! But perhaps an explanation is in order.


Continue reading "Writing Gearman Workers in PHP"

Posted by Matthew Weier O'Phinney in PHP at 09:00 | Comments (10) | Trackbacks (0)
Defined tags for this entry: gearman, php, zend framework

Monday, April 19. 2010

PHP Invades Amsterdam; or, the Dutch PHP Conference

For the third year running, I'm pleased to be speaking at the Dutch PHP Conference, held again in Amsterdam this coming 10-12 of June.


Continue reading "PHP Invades Amsterdam; or, the Dutch PHP Conference"

Posted by Matthew Weier O'Phinney in PHP at 23:58 | Comments (2) | Trackbacks (0)
Defined tags for this entry: conferences, dpc10, php, zend framework

Tuesday, April 6. 2010

A Primer for PHP 5.3's New Language Features

For the past month, I've been immersed in PHP 5.3 as I and my team have started work on Zend Framework 2.0. PHP 5.3 offers a slew of new language features, many of which were developed to assist framework and library developers. Most of the time, these features are straight-forward, and you can simply use them; in other cases, however, we've run into behaviors that were unexpected. This post will detail several of these, so you either don't run into the same issues -- or can capitalize on some of our discoveries.


Continue reading "A Primer for PHP 5.3's New Language Features"

Posted by Matthew Weier O'Phinney in PHP at 11:10 | Comments (31) | Trackbacks (0)
Defined tags for this entry: oop, php, zend framework

Friday, March 19. 2010

A Simple Resource Injector for ZF Action Controllers

Brandon Savage approached me with an interesting issue regarding ZF bootstrap resources, and accessing them in your action controllers. Basically, he'd like to see any resource initialized by the bootstrap immediately available as simply a public member of his action controller.

So, for instance, if you were using the "DB" resource in your application, your controller could access it via $this->db.


Continue reading "A Simple Resource Injector for ZF Action Controllers"

Posted by Matthew Weier O'Phinney in PHP at 16:20 | Comments (34) | Trackbacks (0)
Defined tags for this entry: mvc, php, zend framework

Thursday, March 11. 2010

Module Bootstraps in Zend Framework: Do's and Don'ts

I see a number of questions regularly about module bootstraps in Zend Framework, and decided it was time to write a post about them finally.

In Zend Framework 1.8.0, we added Zend_Application, which is intended to (a) formalize the bootstrapping process, and (b) make it re-usable. One aspect of it was to allow bootstrapping of individual application modules -- which are discrete collections of controllers, views, and models.

The most common question I get regarding module bootstraps is:

Why are all module bootstraps run on every request, and not just the one for the requested module?

To answer that question, first I need to provide some background.


Continue reading "Module Bootstraps in Zend Framework: Do's and Don'ts"

Posted by Matthew Weier O'Phinney in PHP at 11:55 | Comments (11) | Trackback (1)
Defined tags for this entry: mvc, php, zend framework

Thursday, March 4. 2010

Responding to Different Content Types in RESTful ZF Apps

In previous articles, I've explored building service endpoints and RESTful services with Zend Framework. With RPC-style services, you get to cheat: the protocol dictates the content type (XML-RPC uses XML, JSON-RPC uses JSON, SOAP uses XML, etc.). With REST, however, you have to make choices: what serialization format will you support?

Why not support multiple formats?

There's no reason you can't re-use your RESTful web service to support multiple formats. Zend Framework and PHP have plenty of tools to assist you in responding to different format requests, so don't limit yourself. With a small amount of work, you can make your controllers format agnostic, and ensure that you respond appropriately to different requests.


Continue reading "Responding to Different Content Types in RESTful ZF Apps"

Posted by Matthew Weier O'Phinney in PHP at 15:28 | Comments (22) | Trackback (1)
Defined tags for this entry: php, rest, zend framework

Wednesday, February 17. 2010

Symfony Live 2010

This week, I've been attending Symfony Live in Paris, speaking on integrating Zend Framework with Symfony. The experience has been quite rewarding, and certainly eye-opening for many.

To be honest, I was a little worried about the conference -- many see Symfony and ZF as being in competition, and that there would be no cross-pollination. I'm hoping that between Fabien, Stefan, and myself, we helped dispel that myth this week.


Continue reading "Symfony Live 2010"

Posted by Matthew Weier O'Phinney in PHP at 11:39 | Comments (9) | Trackbacks (0)
Defined tags for this entry: php, sflive2010, symfony, zend framework
(Page 1 of 7, totaling 68 entries) » next page
  • Home
  • Resume
  • Blog
  • Phly PEAR Channel
  • Twitter
  • Contact Me
  • About this site

ZCE

Zend Education Advisory Board Member

Add to Technorati Favorites

Calendar

Back September '10
Mon Tue Wed Thu Fri Sat Sun
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30      

Quicksearch

Links

  • PHLY - PHp LibrarY
  • Planet PHP
  • Zend Framework, where I'm project lead
  • Sebastian Bergmann
  • Cal Evans
  • Shahar Evron
  • Paul M. Jones
  • Bill Karwin
  • Mike Naberezny
  • Fabien Potencier
  • Ben Ramsey
  • Derick Rethans
  • Ralph Schindler
  • Marco Tabini

Archives

September 2010
August 2010
July 2010
Recent...
Older...

Categories

XML Linux
XML Personal
XML Aikido
XML Family
XML Programming
XML Dojo
XML Perl
XML PHP

All categories

Syndicate This Blog

XML RSS 0.91 feed
XML RSS 1.0 feed
XML RSS 2.0 feed
ATOM/XML ATOM 0.3 feed
ATOM/XML ATOM 1.0 feed
XML RSS 2.0 Comments

Show tagged entries

xml apache
xml best practices
xml books
xml conferences
xml cw09
xml decorators
xml dojo
xml dpc08
xml file_fortune
xml git
xml linux
xml mvc
xml oop
xml pear
xml perl
xml personal
xml php
xml phpworks08
xml programming
xml rest
xml ubuntu
xml vim
xml webinar
xml zendcon
xml zendcon08
xml zendcon09
xml zend framework
© 2004 - present, Matthew Weier O'Phinney
matthew-web <at> weierophinney.net