是否有任何PHP開源類可以將應用程序配置變量存儲在MySQL數據庫中,例如Wordpress? 我想存儲和讀取類似:將apllication config變量存儲到數據庫
$config['name'] = "test1";
$config['name']['subname'] = "test2";
在MySQL數據庫表和數據庫表需要看起來像
Id | Name | Value | Parent Name Id |
1 | 'name' | 'test1' | null |
2 | 'subname' | 'test2' | 1 |
這等
我發現溶液這裏[鏈接](https://github.com/dschreck/php-eav-example)。 – Milos