Home > Article > Backend Development > How to install PHP in Windows and Linux systems
PHP is an open source, cross-platform scripting language that is widely used in the field of web development. Its installation is relatively simple, but it can be a bit confusing for beginners. This article will briefly introduce how to install PHP in Windows and Linux systems.
1. Install PHP in Windows system
Download the latest PHP installation package (php-7.4 from the PHP official website .1-Win32-vc15-x64.zip) and extract it to a directory on the local hard disk.
In Computer Properties-Advanced System Settings-Environment Variables, find the Path variable and add the PHP installation path to its value.
Find the php.ini-development file in the PHP installation directory and make a copy named php.ini. Open the php.ini file and modify some basic options, such as timezone and error_reporting. This will allow PHP to run better.
Enter the php-v command in the command line window. If the system can output the PHP version number normally, it means that PHP is installed successfully.
2. Install PHP in the Linux system
In the Linux system, you can use apt-get, yum or other Package management tool to install PHP. The specific commands are as follows:
apt-get install php # Debian/Ubuntu system
yum install php # CentOS/RHEL system
In Linux systems, PHP configuration files are usually located in the /etc/php.ini or /etc/php.d directory. These files can be edited to modify PHP options.
Enter the php-v command on the command line. If the system can output the PHP version number normally, it means that PHP is installed successfully. In addition, you can also test whether PHP can run normally by writing a simple PHP script.
phpinfo();
?>
Access the script through the browser. If the PHP information can be output normally, it means that the PHP installation is successful.
Summary
The above are the basic steps for installing PHP on Windows and Linux systems. Installing PHP is not difficult, but you need to pay attention to some details. If you encounter problems, you can seek help on the PHP official website or other technical communities.
The above is the detailed content of How to install PHP in Windows and Linux systems. For more information, please follow other related articles on the PHP Chinese website!