yaf 添加phpunittest

阅读更多
首先要讓php在cli下支持yaf
wamp下打開D:/wamp/bin/php/php5.5.12/php.ini
在extension=php_xsl.dll下面輸入
extension=php_yaf.dll
yaf.environ=dev
;yaf.use_namespace=0

然後重啟apache。

在項目目錄下新建一個test的入口文件,/public/indexTest.php

bootstrap();
$application->getDispatcher()->dispatch(new Yaf_Request_Simple());
?>



在cmd中執行php public/indexTest.php /Index/index

輸出module Index controller Index action index的內容。

你可能感兴趣的:(php,yaf)