PhpWind教程:Windows环境下PHP5开发配置指南_PhpWind教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

Windows环境下PHP5开发配置指南

开发平台:
   WindowsXP 下
     php-5.1.6-Win32
     mysql-5.0.18-win32
     Smarty-2.6.14
     Date-1.4.6.tar
     DB-1.7.6.tar
     MDB2-2.3.0.tar
     Validate-0.6.5.tar
     DB_DataObject-1.8.4.tar

工具:
  phpMyAdmin-2.9.0.2

一、PHP的安装与配置
PHP配置步骤
1、PHP5的下载和安装
     将解压缩后的php-5.1.6-Win32中的文件拷贝到C:\php5\下面。
2、配置PHP
     a>复制 C:\PHP5\目录下的 php5ts.dll 文件到C:\WINDOWS\system32目录中。
     b>将C:\PHP5\目录下的php.ini-recommended文件拷贝到c:\WINDOWS中,并改名为php.ini。
注意:如果使用了 NTFS,确保运行webserver 的用户对 php.ini 有读取的权限(例如使其对Everyone 可读,需将c:\WINDOWS设置为WEB共享)。
     c>加载对http://localhost/phpMyAdmin/

四、smarty的配置
1、安装
     在D:\www\test下新建目录comm。
     从http://smarty.php.net/do_download.php下载最新包,将libs中所有文件拷入comm目录,完成基本安装。
2、配置
     在D:\www\test下新建目录cache、config、templates、templates_c
     在D:\www\test下新建PHP程序文件index.php。如下:
        <?php
         require 'comm/Smarty.class.php';
         $smarty = new Smarty;
         $smarty->template_dir = 'templates';
         $smarty->compile_dir = 'templates_c';
         $smarty->config_dir = 'config';
         $smarty->cache_dir = 'cache';
         $smarty->caching = false;
         $smarty->left_delimiter = "<!--";
         $smarty->right_delimiter = "-->";
         $var = 'Hello World!';
         $smarty->assign('hello',$var);
         $smarty->display('index.tpl');
         ?>
      在D:\www\test\ templates下新建http://localhost/test/index.php
     done...

五、DataObject的配置
1、下载
      DataObject是PEAR的一部分。它与另外4个模块相关。所以在安装它之前,要先安装PEAR,然后安装其他4个模块:DB、DATE、MDB2、和Validate。如果是PHP5安装包的话,在C:\PHP5\ 目录下会带有go-pear.bat工具。点击运行它,然后在C:\PHP5\目录下会看到pear.bat(真多余,但没办法。。。)
      到http://pear.php.net/packages.php下载5个包,我下的是DB-1.7.6.tar、Date-1.4.6.tar、MDB2-2.3.0.tar、Validate-0.6.5.tar和DB_DataObject-1.8.4.tar。拷贝到C:\PHP5\ 目录下。这里面,我们要用到的DB_DataObject包必须最后安装。

2、安装
     依次安装DB、DATE、MDB2、和Validate,最后是DataObject。
     在命令行模式下,转到C:\PHP5\。运行:
         Pear install DB-1.7.6.tar
         Pear install Date-1.4.6.tar
         Pear install MDB2-2.3.0.tar 
         Pear install Validate-0.6.5.tar
         Pear install DB_DataObject-1.8.4.tar
        OK!
3、配置
     我的http://localhost/test/test.php
     OK! …

查看更多 PhpWind教程  PhpWind模板风格

来源:Phpwind//所属分类:PhpWind教程/更新时间:2012-06-04
相关PhpWind教程