很多朋友对PHP环境很为难,经过多次尝试都无法正确配置
其实配置PHP环境并不难,掌握要领就会很轻松
对于初级用户和想简单配置PHP环境的朋友,本人提供一种方法和PHP环境文件
就会让您轻松拥有高性能PHP环境,而且还可以使用虚拟主机管理系统哦!
安装:首先必须确认系统中已经安装了IIS
系统推荐:win2003服务器版,win2000专业版和xp系统不支持多用户IIS
虚拟主机管理系统无法进行管理,xp系统IIS存在问题调试程序会经常出现不正常。
对于作网站和经常调试教本的朋友还是推荐使用win2003服务器版
把系统做好配置好玩游戏的话这两个系统都很不错的,有朋友说win2003系统
很多功能都关闭了而且界面也没有XP好看,不适合个人用,其实这个东西只
需要您稍微改一下,把默认关闭的东西打开,就是一个很不错的个人电脑用的系统
(win2003系统的优化设置方法见:http://www.ie2004.net/jok/index1.htm)
安装说明:
注意:php和mysql均安装到D盘,自己拥有服务器的朋友也建议这样安装
大致路径如下:
D:盘-----serv-u(只对服务器用户,本机调试免)
mail(只对服务器用户,本机调试免)
php
mysql
EfangVHost4.1(易方虚拟主机管理系统4.1)
E:盘-----www(IIS用户目录,存贮IIS用户数据或者本机调试数据)
1、PHP_setup.exe 安装到D盘PHP目录
完全自动安装自动配置,无需手工配置,解决初级用户不会设置PHP.INI的问题
此文件安装完IIS也会自动配置完成,无须手工更改。
2、将mysql-4.0.24-win文件夹拷贝到D盘,文件夹重命名为mysql
使用mysqladmin,更改默认密码。
当然也可以不更改,密码为空
进入命令提示符:进入D盘的mysql\bin文件夹
mysql的初始管理帐号是root,没有密码
如果想把默认帐号root密码更改为:123456
则执行:mysqladmin -u root -p password 123456
其中password不用动,后面的123456是更改后的密码
回车以后会再次提示输入密码,不用改直接回车,密码就会变为123456
执行:mysql中\BIN中的winmysqladmin.exe文件即可启动MYSQL
第一次需要添加一次默认的密码,此密码随意。
3、安装ZEND
安装路径默认,提示需要加速的WEB目录时选择你的WEB目录
比如WEB目录在E盘的WWW中,就选择e:\www此过程需要执行两次
提示是否需要更改系统文件夹中的PHP.INI时,选择是。
4、安装虚拟主机管理系统:
默认安装路径为D盘,安装完执行文件夹中的“安装服务.bat”文件启动易方主机管理系统。
浏览器中执行http://127.0.0.1:9999即可登陆管理系统,默认用户名和密码都是admin
主机管理系统使用说明请到软件官方www.efang.com.cn下载
Explanation of the problem:
1. How to make the system support PHP tutorial: Execute the PHP installation during installation and the system will automatically support it.
2. Connection between MYSQL and the host management system: Start MYSQL. Install the virtual host management system to the D drive
and execute: "Installation Service.bat" file in the EfangVHost4.1 folder on the D drive to start the E-Fang host management system.
Execute http://127.0.0.1:9999 in the browser to log in to the management system. The default username and password are both admin
After entering, select "System Configuration"-"Installation and Settings MySQL"
First For this operation, you need to install "Install ODBC_3.51.11 Driver (MySQL)"
and then fill in the host address: This address does not need to be changed by default (localhost), MYSQL user name: root,
Password: (This password is the installation step 2 above The changed password, if there is no change, the password will be empty).
If the connection to MYSQL is successful, there will be a success prompt.
3. The host management system opens a space that supports MYSQL and PHP:
Select "Host Type", fill in the number: ht01, and set the corresponding parameters, where "site directory" fills in "e:www"
Select: Support MySQL
Then select "Create Site" and select the host type: ht01
The administrator account and password are optional. Then click "Create Site". After success, click: "Manage Now"
Select "Create MYSQL Database" in "Database Settings"
Then the space is fully activated and already supports PHP and MYSQL. If it is local debugging, you need to enter the "IIS Settings" of this
space and fill in the IP of the host header into the local debugging IP, for example: 127.0.0.1
Complete the setting and enter the browser input: 127.0. 0.1 can display the successful site opening screen
4. The win2003 system cannot be debugged locally:
Open IIS, select: "WEB Service Extension", set "Active Server Pages" to "Allow"
Change " Just change the "Predefined Account" of
in the "Identity" of the default pool "DefaultAppPool" to "Network Service".
5. There is a problem with my PHP textbook debugging. What should I do if I want to delete the MYSQL library and re-debug it?
It’s very simple. Enter the data directory of the mysql folder and delete the
file in the folder that was automatically created in the virtual host management system. Of course, you can also delete the database created by MYSQL in the virtual host management system. Delete and re-create.
Related file download: http://www.ie2004.net/down/php/default.htm
Note: The download address is a Netcom line, which will be slow for telecom users. In addition, the host has an anti-leeching system. , please do not connect to download.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
