Home > php教程 > php手册 > 全方位讲解PHP zend安装技巧

全方位讲解PHP zend安装技巧

WBOY
Release: 2016-06-13 11:11:19
Original
895 people have browsed it

在zend framework手册中,有个快速度建立工程的zf.bat create project quickstart,这个脚本位于bin目录下,在命令行下执行:zf.bat create project e:webrootzf_web,将会在webroot目录下产生一个zf_web工程,PHP zend安装时会默认建立一些配置文件,如下:

zf_web
|-- application
| |-- Bootstrap.php
| |-- configs
| | `-- application.ini
| |-- controllers
| | |-- ErrorController.php
| | `-- IndexController.php
| |-- models
| `-- views
| |-- helpers
| `-- scripts
| |-- error
| | `-- error.phtml
| `-- index
| `-- index.phtml
|-- library
|-- public
| `-- index.php
`-- tests
|-- application
| `-- bootstrap.php
|-- library
| `-- bootstrap.php
`-- phpunit.xml

其中的public目录就是我们工程主要目录,在你的浏览器输入这个工程的URL,你将会看到一个欢迎界面!当然Zend Framework 要求 PHP 5.1.4 或更高版本,但 Zend 强烈建议 5.2.3 或更高,而我的PHP5.3.1是今天刚配置好的,所以基本上没有什么问题,网上的一些做法是在HTTP下还配置了httpd.conf的LoadModule rewrite_module modules/mod_rewrite.so,打开了这个支持,在PHP的PHP.INI中把你的zend library目录路径加入到include_path中。事实上PHP zend安装就这么简单!


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template