Home  >  Article  >  Backend Development  >  Detailed introduction to quickly setting up the PHP development environment under Linux (pictures and text)

Detailed introduction to quickly setting up the PHP development environment under Linux (pictures and text)

黄舟
黄舟Original
2017-03-13 16:34:361958browse

Quickly build a php development environment

1. Quickly build a php development environment under Linux

1. Install XAMPP for Linux

PHPDevelopment environment. Download: http://www.php.cn/xiazai/gongju/91 Enter the download interface and select XAMPP for LinuxDownload Start terminal input Command cd /download the path saved by xampp. My save path is: /home/coderose/download. To change the installation permissions of the installer, enter the command: chmod 755 xampp-linux-*-installer.run (Note: the asterisk represents the version number of XAMPP you downloaded). Run the installation program and enter the command: ./xampp-linux-*-installer.run After successful installation, use the command: sudo /opt/lampp/lampp start to start.

(Note: cd command: used to switch the working directory to dirname. ls command: list all files in the directory. chomd command: modify files Permissions)

2. Install PhpStorm

PhpStorm is a lightweight and convenient PHP IDE. It is designed to improve user efficiency, deeply understand user coding, and provide intelligent code completion. Fast navigation and instant error checking.

Download link: http://www.php.cn/xiazai/gongju/122

After the download is complete, open the terminal and enter the command: cd /home/coderose/Download (go to download file directory)

Enter the command: tar -xvzf PhpStorm-2016.3.3.tar.gz (change the file name to PhpStorm after decompression)

Enter the command: cd /home/coderose/Download /PhpStorm/bin (go to the bin directory under the decompressed file PhpStorm)

Enter the command: ./phpstorm.sh (installation)

3. Activate the most useful PHP IDE in the world

Open PhpStorm and select Activation code. Enter the code obtained from idea.lanyus.com in one column. Get the registration code and paste and copy. Click Activate to activate (you get the $199 software, so happy!)

4. Create the first PHP small demo

(1) Open PhpStorm: (1) Create a demo.html

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>php小demo</title></head><body><form action="demo.php" method="post">
    <table border="1">
        <tr>
            <td>姓名:</td>
            <td><input type="text" name="name1"></td>

        </tr>
        <tr>
            <td colspan="2" align="center"><input type="submit" value="提交"></td>
        </tr>
    </table></form></body></html>

(2) Create demo.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>php小demo</title>
</head>
<body>
<?php echo "hi!"; ?>
</body>
</html>

(3) Fill in the data in the form and click the submit

button

, which will jump to the demo.php page as shown:


The above is the detailed content of Detailed introduction to quickly setting up the PHP development environment under Linux (pictures and text). For more information, please follow other related articles on the PHP Chinese website!

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