PHP 开发环境配置(测试开发环境)

yipeiwu_com6年前PHP代码库

1. 创建一个文件(test.php)

我的路径如下

F:\Projects\PHPTest\test.php

2. 用记事本打开Apache配置文件

D:\Program Files\Zend\Apache2\conf\httpd.conf

在最后一行加入

Alias /Test "F:\Projects\PHPTest"

<Location /Test>
  Order deny,allow
  Allow from all
</Location>

3. 重新启动Apache(通过任务通知栏中的Apache Monitor) 

4. 在浏览器中打开http://localhost/test.php,如果开发环境正确配置,则会显示页面如下。

ccc

相关文章

asp.net访问网络路径方法(模拟用户登录)

核心代码: public class IdentityScope : IDisposable { // obtains user token [DllImport("...

php实现将任意进制数转换成10进制的方法

本文实例讲述了php实现将任意进制数转换成10进制的方法。分享给大家供大家参考。具体如下: php将任意进制的数转换成10进制,例如8进制转换成10进制,16进制转换成10进制 &l...

PHP新手用的Insert和Update语句构造类

使用方法 复制代码 代码如下: $mysql = new sqlstr("table1"); $mysql->set("name","value"); $mysql->set...

浅析PHP原理之变量分离/引用(Variables Separation)

首先我们回顾一下zval的结构:复制代码 代码如下:struct _zval_struct {       &nbs...

PHP strtotime函数详解

先看手册介绍: strtotime — 将任何英文文本的日期时间描述解析为 Unix 时间戳 格式:int strtotime ( string $time [, int $now ]...