Doctrine 2 Reverse Engineering Usage In Zend Framework

I always use Bisna library to integrate Doctrine 2.X with Zend Framework 1.X. This library is created by Guilherme Blanco an Open Source Evangelist and Software Engineer in Yahoo!.

Module As Subdomain In Zend Framework

In Zend Framework we can split an application into several modules. It purposed to make us easy to manage source code, and the source code become more structured.

ZFCE Popularity In Indonesia And Surrounding

Alhamdulillah, I passed Zend Framework Certified Engineer (ZFCE) Exam on September 15. Because there was no programmer have ZFCE in Indonesia, so I become the first ZFCE in Indonesia. If we look Zend Framework usage in Indonesia it still below of Code Igniter. I get this summary by watch 2 PHP mailing list in Indonesia (id-php and php-ug).

Zend Framework And RESTful Web Service

REST web api is not a new toy today. One of public service that user RESTful Architecture is twitter. On Zend Framework, we can implement RESTful easily. Just make action that related with HTTP method used.

getAction()  => handle request with HTTP GET
postAction() => handle request with HTTP POST
putAction()  => handle request with HTTP PUT
deleteAction()  => handle request with HTTP DELETE

For more details, please see these steps

Field Doesn't Have a Default Value And sql-mode On MySQL

MySQL doesn't allow us to set default value for field with TEXT data type. It caused MySQL often return error message "Field '' doesn't have a default value". And it occur because we do not set value for that field when execute SQL statement, while that field has no default value.

How To Use Doctrine PHP ORM?

On my previous post I have write about doctrine usage with Zend Framework. On this post, I will try to give sample usage of doctrine that contain:
- Installation
- Configuration
- Models & Schema File
- Migration

Doctrine Usage On Zend Framework

doctrine logo In the last few months I used doctrine as ORM on my project. Actually, there are a few ORM on PHP like propel.

Convert SVN Repository To Git

Now, I'm moving to Git. After use Subversion as SCM for a few years. Start from our need for distributed SCM and want to try SCM that been used in Linux Kernel development.

Karakter ^M Di PHP

Ketika bekerja dengan dokumen text yang dibuat pada sistem operasi windows, karakter "^M" (Ctrl + M) sangat sering ditemukan. Karakter tersebut merupakan break line yang terdiri dari \r\n. Tetapi Unix membaca karakter tersebut menjadi ^M.

Log Your PHP Application With Zend_Log (Part 3/Finish)

This article is a continuation of Log Your PHP Application With Zend_Log (Part 2). Check it out if you missed it. Last time I wrote about installation and some features of Zend_Log. Now I will explain about Zend_Log usage.

Zend_Log Usage

Syndicate content