Home  >  Article  >  Backend Development  >  Does PHP development require knowledge of node?

Does PHP development require knowledge of node?

angryTom
angryTomOriginal
2019-10-30 11:00:112145browse

Does PHP development require knowledge of node?

Does PHP development need to know node?

No. PHP is completely sufficient as a back-end development language, and there is no need to learn additional nodejs technology.

PHP


PHP, the "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. PHP's unique syntax mixes C, Java, Perl, and PHP's own syntax. It is conducive to learning and widely used. It is mainly suitable for the field of web development.

NodeJS


Node.js is a JavaScript runtime environment based on the Chrome V8 engine. Node.js uses an event-driven, non-blocking I/O model.

Node is a development platform that allows JavaScript to run on the server side. It makes JavaScript a scripting language on par with server-side languages ​​such as PHP, Python, Perl, and Ruby. Released in May 2009 and developed by Ryan Dahl, it essentially encapsulates the Chrome V8 engine.

Node optimizes some special use cases and provides alternative APIs to make V8 run better in non-browser environments. The V8 engine executes Javascript very quickly and has very good performance. Node is a platform built on the Chrome JavaScript runtime, used to easily build web applications that are responsive and easy to expand. Node uses an event-driven, non-blocking I/O model to be lightweight and efficient, making it ideal for running data-intensive real-time applications on distributed devices.

For more PHP related knowledge, please visit PHP Chinese website!

The above is the detailed content of Does PHP development require knowledge of node?. 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
Previous article:what is php preprocessingNext article:what is php preprocessing