Is there an existing object-oriented database native to PHP like db4o in C # and Java?

If you do not want to use a relational database ...

+3
source share
1 answer

Well, CouchDB is not native to PHP, but it is native to the Internet. It stores data in JSON format, which can be directly converted to PHP objects. You can try this.

http://couchdb.apache.org/

If this does not help, find "NoSQL". This movement is using databases that are not relational.

+2
source

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


All Articles