Categories
PHP

Coupling Zend Framework with CodeIgniter

CodeIgniter is a super cool web application framework for PHP. It is lightweight and lets you get the jobs done in a fashion. It is the first framework I have used and I am still using it. On the other hand, Zend Framework is from Zend, the PHP company. I appreciate the huge library and the full stack nature. I respect the fact that ZF is from the people who maintain PHP. But honestly, I don’t find it feasible for medium and small projects.

One of the brighter aspects of the Zend Framework is that it has many cool libraries. The framework itself is loosely tied and the components are available as stand alone. We can take this opportunity to integrate the powerful library of the Zend Framework into the beautiful CodeIgniter making ourselves more productive than before. Specially, we can relieve ourselves from writing and maintaining wrappers to different APIs.

Ok then, let’s see how do we integrate the Zend Framework libraries into CI.

1) Setup CodeIgniter.

2) Download the Zend Framework. Extract the archive.

3) From the ZF files, copy the “Zend” directory from inside the “library” directory.

4) Paste the directory into the “system/application/libraries” directory. So ultimately, the new location of the copied “Zend” directory would be “system/application/libraries/Zend”. If you’re on Linux/Unix, we need to deal with file permission. Make the Zend directory accessible by all. I don’t think I need to tell you how to do that with chmod, do I ? πŸ˜‰

5) In the same “system/application/libraries/” directory, create a new file named “Zend.php” and put the following contents:

πŸ™‚ We are done. That completes the integration. Now we can load any Zend component inside our controllers. Let’s make our hands dirty by modifying the default welcome controller. Open the “system/application/controllers/welcome.php” and put the following contents:

If you read the codes above, you already know what it does πŸ™‚ If everything goes right, you’ll see a bunch of Flickr photos with the “worldcup” tag. Clicking on a photo will take you to the Flickr page of that photo.

Now, what we have seen is pretty straightforward. We don’t use any hooks or don’t go for any complexity. We simply put the Zend library in the application library. Then we write a loader class that loads Zend libraries. When we construct this “Zend Loader” object, it adds the Zend library directory to the include path. Then when we use the load() method of the object, it imports the library and adds the functionalities to the current scope πŸ™‚

Click on the following to know how you can access pdf files anywhere without transferring them – sodapdf.com.
Enjoy the Zend Services with the cool CodeIgniter framework! Have fun πŸ˜€

16 replies on “Coupling Zend Framework with CodeIgniter”

Hi Masnun

Excellent post I must say. I was also wondering how to use the service libraries from ZF in CI πŸ™‚ and you shed some light πŸ™‚

Carry on good posting πŸ™‚

Hi !
Greate Post !
But with ZF v.1.10.x & CI v.1.7.2 , i have an Error :

“An Error Was Encountered
Unable to load the requested class: zend”

Can’u help, please ?

Comments are closed.