Zend学习笔记 - (三) 第一个Zend程序

根据教程编写第一个zend程序

修改httpd.conf 添加 <virtualhost> ServerName zf001.my DocumentRoot "F:/project/zf001/public" <directory> AllowOverride All Allow from all Satisfy all </directory></virtualhost> C:\WINNT\system32\drivers\etc 添加 127.0.0.1 zf001.my

教程见附件

教程使用的是Zend Framework 1.5版

根据1.10版所作的修改

 

 

设置时区date_default_timezone_set('Asia/Shanghai');

时区查询http://php.net/manual/en/timezones.asia.php

 

index.php

<?php 
error_reporting(E_ALL|E_STRICT); 
ini_set('display_errors', 1); 
date_default_timezone_set('Asia/Shanghai'); 
// 目录设置和类装载 
set_include_path('.' . PATH_SEPARATOR . '../library/' 
   . PATH_SEPARATOR . '../application/models' 
   . PATH_SEPARATOR . get_include_path()); 


require('Zend/Loader/Autoloader.php');
Zend_Loader_Autoloader::getInstance()->setFallbackAutoloader(true);//能够载入无名子空间的类,比如models目录下的类。


// 设置控制器 
$frontController = Zend_Controller_Front::getInstance(); 
$frontController->throwExceptions(true); 
$frontController->setControllerDirectory('../application/controllers'); 
// run! 
$frontController->dispatch(); 
 

你可能感兴趣的:(C++,c,PHP,.net,Zend)