Home>Article>Backend Development> Are there similarities between php and c languages?

Are there similarities between php and c languages?

尚
Original
2019-10-21 10:04:06 3163browse

PHP, "Hypertext Preprocessor", is a general open source scripting language. PHP is a scripting language executed on the server side. It is similar to C language and is a commonly used website programming language.

Are there similarities between php and c languages?

The similarities between PHP and C language:

The basic syntax of PHP is very similar to that of C. It can be said that the basic syntax of most programming languages is the same: sequence, selection (if), loop (while).

C language is a process-oriented, abstract, general-purpose programming language that is widely used in low-level development. In the use of PHP language, you can use process-oriented and object-oriented respectively.

The difference between php and C language:

1. PHP is a server scripting language and must be run on a server that can parse PHP

2 , C language is a low-level language, and PHP is a high-level language

3. C language is a strongly typed language, and PHP is a weakly typed language. This can be seen from the difference in syntax between the two

4 , PHP is mainly used for web applications, and C language is mainly used for low-level computer applications. In addition, C language is much more powerful than PHP. You should know that PHP is written in C language.

Recommended reading:phpserver

The above is the detailed content of Are there similarities between php and c languages?. 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