


PHP road---1---Wamp environment configuration--php environment configuration,---1---wamp--php_PHP tutorial
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" 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
apache, mysql, php (WAMP is mainly used for testing, install apache server software, mysql database, php locally)
Or directly install integrated software
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> >

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
