Home  >  Article  >  Backend Development  >  The difference between php and .net

The difference between php and .net

藏色散人
藏色散人Original
2020-10-30 09:18:033753browse

The difference between php and .net: 1. .NET is Microsoft’s contemporary operating platform, while PHP is a cross-platform server-side embedded scripting language; 2. Compared to .net, php is more Interpreted language type; 3. In .net, the main operation objects are encapsulated class libraries, while in php, the main operation objects are various functions, etc.

The difference between php and .net

Recommendation: "PHP Video Tutorial"

.NET is Microsoft's contemporary operating platform, which allows people to Various application methods are built on it to enable people to obtain information from websites in as simple a way as possible, to solve the collaborative work between websites, and to break down computers, equipment, websites, major institutions and industries. Barriers between industries - the so-called "digital islands", thereby realizing the full potential of the Internet and building a third-generation Internet platform. The suffix "net" is a network service company that provides services to individuals or businesses.

PHP is a cross-platform server-side embedded scripting language. It borrows a lot of syntax from C, Java and Perl languages, and couples PHP's own features to enable WEB developers to quickly write dynamically generated pages. It supports most current databases. Another point is that PHP is completely free. You don’t need to spend money. You can download it freely from the PHP official site (http://www.php.net). And you have unrestricted access to the source code, and you can even add the features you need.

The difference between asp.net and php is as follows:

Compared to .net, php is more inclined to the interpreted language type;

In .net, we operate The main thing is the encapsulated object-class library; in php, the objects we mainly operate are mainly various functions;

PHP programming tools are relatively different. net's programming environment and database are very, very lightweight; especially the programming environment, which is both lightweight and very flexible;

In .net and php, the methods of data transfer include get and post (Chapter Three types will not be discussed for now); in .net, we use context.Request["ID of the operation object"] and context.QueryString["ID of the operation object"] to obtain data; in php, we obtain data What is used is $_get["ID of the operation object"], $_post["ID of the operation object"];

In .net, the way to display data is Response.Write("What you want to display Content"); in php, we use echo "the content you want to display";

In .net we mainly operate objects and arrays, and the two can be converted into each other; in . In net, the objects we operate are mainly arrays.

The above is the detailed content of The difference between php and .net. 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