http://framework.zend.com/manual/2.2/en/modules/zendtool.introduction.html
https://packages.zendframework.com/zftool.phar
http://www.ibm.com/developerworks/cn/opensource/os-php-5.3new4/
https://github.com/zendframework/ZendSkeletonApplication
https://github.com/zendframework/ZFTool
一、zftool.phar 放在app 目录(推荐部署框架)
二、下载基本的框架包部署后,下载zftool php 包放在vender\ZFTOOL
/下载zend framework库,其实这个可以不用
php zftool.phar install zf <path>
#php zftool.phar install zf libary
/创建项目
php zftool.phar create project <path>
#php zftool.phar create project E:\home\zf25
/安装zend framework库等,跟第一步有点冲突
#php composer.phar install
将ZFTOOL的项目包放置到vender下
#zftool php 包放在vender\ZFTOOL
以下命令在不输入path参数时依赖zftool模块
zf.php create module <name> [<path>]
#zf.php create module test E:\home\zf25
zf.php classmap generate <directory> <classmap file> [--append|-a] [--overwrite|-w]
加入zf.bat,可使命令简化
如下
php zf.php version
zf version
php zf.php modules
zf modules
zf create module <name> <path>
#zf create module Album
zf create contoller <name> <module> <path>
#zf create controller Album Album
zf create action <name> <controllername> <module> <path>
#zf create action index Album Album
测试
#zf create action test index Application
zf create module Book
zf create controller index Book
zf create action index index Book
zf create action test index Book
zf create module Task
zf create controller index Task
zf create action index index Task
zf config list
zf config get <name>
zf config set <name> <value>