Looking for PHP Framework with special abilities

I am looking for a PHP framework that supports multiple databases with the same schema / model. Each client of us will become his own web server with his own database. In addition, we want to develop a central administration application that works in all client databases, all of them have the same scheme / model. Is there a php framework that supports such things?

+3
source share
3 answers

I would recommend using Doctrine as an ORM. This simplifies communication with various databases without changing the code.

http://www.doctrine-project.org/

MVC, , Doctrine. (VC MVC) Zend, Symfony .

+2

. , CodeIgniter, CakePHP, Symfony, Zend... , , , .

+1

. , . , , . (, ..) .

Architecture Note: I don't know the nature of your application, but having multiple databases and multiple codebases is a big maintenance problem. The full-blown SaaS architecture saves a lot of maintenance costs ( http://en.wikipedia.org/wiki/Software_as_a_service )

Contact us if you need further clarification.

0
source

Source: https://habr.com/ru/post/1734832/


All Articles