Home  >  Article  >  Backend Development  >  PHP road---1---Wamp environment configuration--php environment configuration,---1---wamp--php_PHP tutorial

PHP road---1---Wamp environment configuration--php environment configuration,---1---wamp--php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:21:081013browse

The road to PHP---1---Wamp environment configuration--php environment configuration,---1---wamp--php

I want to learn PHP by myself. It’s been over half a year, and lately I feel like I’m stuck somewhere, and it’s hard to take another step forward (just kidding).

A comprehensive analysis of the reasons: 1. It may be that I have no systematic plan for learning PHP. 2. Insufficient development experience (PS: Although I am now helping others maintain small information websites, improve small functions and so on, and am currently working on a corporate website). 3. Depends on the framework thinkPHP. 4. I have never bought any books and rely too much on watching videos.

There is also a simple personal thought: getting started with PHP is too simple, and simple web basically does not require any advanced skills, which may also lead to low learning efficiency. And it seems that PHP must be bound to something other than a simple language, especially MySQL. The advanced parts of PHP are data knowledge, not knowledge of PHP's own grammar, and most PHP knowledge is about functions. Applications, algorithm logical structures are few and far between. Of course, I don’t know if my expression is correct or not.

》》》》》》》》》》》》》Main topic: Wamp environment configuration《《》《《《》《《《

Tip: For newbies than me, it is recommended to use an integrated environment like wamp sever or appserv for their first configuration.

Then: Detailed tutorial http://blog.csdn.net/yousuosi/article/details/9448903

Now is the boring time. If you want to read it, I suggest you read the detailed tutorial

》》Installation sequence Apache->MySQL->PHP

》》Install Apache, just follow the process

》》Test Apache ->http://localhost Seeing it's work means the installation is successful

》》Install MySQL, just follow the process, the details are haha

》》Test MySQL -> cmd->mysql -u root -p Enter password

》》Install php and unzip it

》》Add php module to Apache-> Modify the Apache configuration file httpd.conf->Add LoadModule php5_module “d:/Server/php/php5apache2_2.dll” in the last line

》》Add .php to the parsable file type of Apache->Modify the Apache configuration file httpd.conf->Add AddType application/x-httpd-php .php

》》Add default access page->Modify Apache configuration file httpd.conf->Modify (if not, add it under ) DirectoryIndex index.php index.html

" d:/Server/php”

》》Modify the php extension library path->Modify php.ini->extension_dir = "d:/Server/php/ext"

》》Add php extension library->Modify php.ini->extension=php_mysql.dll and remove it before dividing it (use the semicolon for whatever you want to extend)

》》Restart Apache--MySQL

How to configure the php development environment?

WAMP environment

apache, mysql, php (WAMP is mainly used for testing, install apache server software, mysql database, php locally)

Or directly install integrated software


How to configure PHP environment in Windows system

Download PHP5: cn2.php.net/...32.zip
Download apache: down.chinaz.com/soft/18000.htm

Installation and debugging of 1.php
Since php is a zip file (non-install version), the installation is relatively simple, just unzip it. Rename the unzipped php5.2.1-Win32 to php5. And copy it to the C drive directory. That is, the installation path is c:\php5
1. Find the php.ini-dist or php.ini.recommended file in the php directory, rename it to php.ini
and copy it to the windows directory of the system disk (with c:\windows as an example).
2 Then copy php5ts.dll and libmysql.dll in the php directory to the directory c:\windows\system32.
3 Copy the php_gd2.dll, php_mysql.dll, php_mbstring.dll files in the php5\ext directory to c:\windows\system32
If php_gd2.dll is not loaded, php will not be able to process images. If php_mysql.dll is not loaded, php will not support the mysql function library
php_mbstring.dll supports wide characters when using phpmyadmin later.
4 Open the c:\windows\php.ini file (associated with mysql)
Set the extension path
Look for extension_dir and there is such a line extension_dir = "./"
Change this line to
extension_dir = "C:\php5\ext"
Where C:\php5 is the path where you installed php. If the path is incorrect, the dll will not be loaded
(Note: some PHP versions are;extension_dir = "./" and the preceding semicolon must be removed)
Look for extension
extension=php_mbstring.dll
extension= php_gd2.dll
extension=php_mysql.dl
Remove the semicolons in front of the above three items, so that these dlls can be loaded when apache starts
Of course, we also copied these dlls to system32 before l
php5 time difference problem
The time difference is eight hours
Why? The PHP5 series version has a new time zone setting, the default is Greenwich Mean Time is exactly 8 hours different from the East 8th District where China is located.
Look for date.timezone and there is such a line
;date.timezone =
Remove; and change it to
date.timezone = PRC
2. Apache debugging and integration
1. Modify the website root directory
Find DocumentRoot and there is such a line
DocumentRoot "C:/Program Files/Apache...the rest of the text> >

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/863232.htmlTechArticlePHP Road---1---Wamp environment configuration--php environment configuration,---1- --wamp--php I have wanted to learn PHP by myself for more than half a year. Recently, I feel like I am stuck somewhere. It is difficult to take another step forward...
Statement:
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