PHP Modules Tutorials - Herong's Tutorial Examples - v5.18, by Herong Yang
Downloading and Installing PHP 7.3 for Windows
This section provides a tutorial example on how to download and install the PHP engine 7.0 on a Windows system.
1. Go to windows.php.net/download/ and download the ""VC15 x64 Thread Safe (2018-Dec-06 04:31:24)" binary version for Windows. You will get a file called "php-7.3.0-Win32-VC15-x64" of 21,846,474 bytes.
2. Unzip "php-7.3.0-Win32-VC15-x64" to \php folder.
3. Open a command window, and try the following commands:
herong> \php\php -v
4. If see an error message saying: "The program can't start because VCRUNTIME150.dll is missing from your computer. Try reinstalling the program to fix this problem.", you need to install "Visual Studio 2015 x86".
5. Open a command window, and try the following commands again:
herong> \php\php -v PHP 7.3.0 (cli) (built: Dec 6 2018 01:54:19) (ZTS MSVC15 (Visual C++ 2017) x64) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.0-dev, Copyright (c) 1998-2018 Zend Technologies
Cool, both Command Line Interface (CLI) and Common Gateway Interface (CGI) of PHP are working!
Table of Contents
►Introduction and Installation of PHP
►Downloading and Installing PHP 7.3 for Windows
"php -help" - Command Line Options
"php -i" - PHP Engine Information
php.ini - PHP Runtime Configuration
Hello.php - My First PHP Script
"php -a" - PHP Interactive Shell
Downloading and Installing PHP Documentation
Managing PHP Engine and Modules on macOS
Managing PHP Engine and Modules on CentOS
DOM Module - Parsing HTML Documents
GD Module - Manipulating Images and Pictures
MySQLi Module - Accessing MySQL Server
OpenSSL Module - Cryptography and SSL/TLS Toolkit
PCRE Module - Perl Compatible Regular Expressions
SOAP Module - Creating and Calling Web Services
SOAP Module - Server Functions and Examples