php yaf框架扩展实践一——配置篇
```
define("APPLICATION_PATH", realpath(dirname(__FILE__) . '/../'));
$app = new \Yaf\Application(APPLICATION_PATH . "/conf/application.ini", ini_get('yaf.environ'));
```
```
$config = new \Yaf\Config\Ini(APPLICATION_PATH . '/conf/url.ini', ini_get('yaf.environ'));
```
本文转自:[http://www.01happy.com/php-yaf-ext-config/](http://www.01happy.com/php-yaf-ext-config/)
评论区