Home  >  Article  >  Backend Development  >  What is the suffix of php?

What is the suffix of php?

步履不停
步履不停Original
2019-06-12 14:02:314114browse

What is the suffix of php?

php is the suffix of a programming language (naming format).

PHP (foreign name: PHP: Hypertext Preprocessor, Chinese name: "Hypertext Preprocessor") is a general open source scripting language. The syntax absorbs the characteristics of C language, Java and Perl, which is easy to learn and widely used. It is mainly suitable for the field of Web development. PHP's unique syntax mixes C, Java, Perl, and PHP's own syntax. It can execute dynamic web pages faster than CGI or Perl. Compared with other programming languages, dynamic pages made with PHP embed programs into HTML (an application under the Standard Universal Markup Language) document for execution, and the execution efficiency is much higher than CGI that completely generates HTML tags; PHP can also execute compiled code. Compilation can achieve encryption and optimize code running, making the code run faster.

PHP is mainly used for server-side scripts, so you can use PHP to complete any work that other CGI programs can complete, such as collecting form data, generating dynamic web pages, or sending/receiving Cookies . But PHP’s capabilities go far beyond that.

PHP scripts are mainly used in the following three fields;

Server-side scripts. This is the most traditional and main target area of ​​PHP.

Command line script. You can write a PHP script and don't need any server or browser to run it. This way you only need the PHP parser to execute.

Write a client-side GUI application. PHP may not be the best language for window-based applications, but if you are very proficient in PHP and want to use some of PHP's advanced features in your client applications, you can take advantage of PHP-GTK to write these programs.

The above is the detailed content of What is the suffix of php?. 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