What is the PHP framework for Firebird?

Is there any PHP web infrastructure that works using the Firebird database?

By "clean" I mean "ready-made", without hacks / settings / home-made drivers.

So far I have tested frameworks like CodeIgniter and CakePHP , but their support for Firebird is unclear or a bit more.

+4
source share
7 answers

The Zend Framework has a Firebird / Interbase DB adapter in incubation , so it almost clears itself out of the box (and I used it, and it worked like a charm for me). Keep in mind that there is an experimental PDO adapter for Firebird , and for this purpose any infrastructure that uses PDO will support it.

+3
source

Zend Framework is working on Firebird-Interbase support. You can check the progress here.

+1
source
+1
source

Zend Framework supports Firebird and Interbase in the "Advanced" section, you should download the "Full Package" instead of the "Minimum Package".

I developed this adapter, if you need help, subscribe and send a message to fw-db@lists.zend.com.

+1
source

Instead of finding a framework that FireBird supports, why not use a framework that you are familiar with and use ADOBD lib to access many RBDMS out of the box.

+1
source

There is a YII framework

it's not completely out of the box, but pretty straightforward

https://github.com/robregonm/YiiFirebird - for Yii 1

https://github.com/edgardmessias/yii2-firebird - for Yii 2

+1
source

All Articles