What is PHP? How to open PHP files?

不言
Release: 2023-04-03 11:06:01
Original
1614 people have browsed it

What is php? PHP is an HTML embedded language, a scripting language that is embedded in HTML documents and executed on the server side. So, how to open a PHP file? Let's take a look at how to open the

php file:

In a simple sentence, php is the same as txt (text document). Notepad can open it, but what you see is the code, and It is not the effect after php is executed, for example We open the test.php code Because the encoding is in gbk or utf8 format, when using Notepad to open a php file in utf8 format, garbled characters will appear when there are Chinese characters, so we recommend opening it with software that supports utf8 format files such as Dreameweaver or EditPlus. (Ordinary users can choose editplus to open it, because editplus is relatively small)

A piece of php test code, the code is as follows:

 <?php  
for($i=1;$i<=10;$i++){  
echo $i.&#39; 
&#39;;  
}  
echo "m.sbmmt.com";  
?>
Copy after login

But everyone’s purpose is often not to see such code. If you want to see the effect after execution, you need to configure the PHP running environment.

The m.sbmmt.com you visit is a pre-configured PHP operating environment on the server side. It may be Linux or Windows. When purchasing space, ask the IDC provider if they support PHP. , otherwise if you purchase a space that does not support PHP in the future, it will not be able to support PHP.

If you are testing the php code locally, you can use some tools such as phpnow (phpnow is relatively simple to install and use. After installation, copy the php file to the htdocs directory and enter http://127.0 in the browser .0.1 is enough. If you select a port, you need to add the port http://127.0.0.1: port number). IIS can also be used, but it requires a slightly more professional person to configure it. Here we also provide you with iis php operating environment. The premise is that your computer has iis, which is generally not installed on personal computers by default. The operating systems that support iis are generally winxp and win2003 systems.

If you have set up the php operating environment and enter the URL in the browser, you can see the running effect of php (note: the URL you enter in the browser may be different, ours is the intranet IP )

Many friends who have no foundation often ask how to open php files. In fact, PHP is a web script, but it is different from html xml Tag language can be opened directly through the browser. You need a PHP running environment to access and open the file. If you only edit PHP to open the file, you only need to use Notepad or related editors such as (DW, EclipsePHP, editplus etc.) and just open it for editing.

Let’s introduce what PHP is and add some basic knowledge of PHP. PHP is the abbreviation of the English hypertext preprocessing language Hypertext Preprocessor. PHP is an HTML Embedded language is a scripting language embedded in HTML documents that is executed on the server side. The style of the language is similar to C language and is widely used. Another meaning of PHP is: The standard symbol of the Philippine Peso.

When we were learning website construction, the language we came into contact with most at the beginning was definitely HTML, and the dynamic language was definitely ASP. However, with the development of the network and the change in the direction of hosts, especially overseas hosts have more LINUX systems, while WIN systems are rare and very expensive. Therefore, we are forced to choose LINUX host and use PHP language program. Some friends asked how to open a website in PHP language. This problem is actually very simple. No matter what language the web page is in, we can open it with DW or EDITPLUS or Notepad.

But debugging PHP programs is not as simple as ASP. We can debug directly in the PHP space or install the local environment. The PHPNOW or WAMPSERVER I am using now are both good tools.

Related recommendations:

How to open a PHP file?

How to open a PHP file, how to open a PHP file?

The above is the detailed content of What is PHP? How to open PHP files?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!