What are the scripting languages?
There are many kinds of scripting languages. For example, our common Cmd command can also be regarded as a kind of script. The scripting language you are talking about should be the script of the web application.
Script language, also known as extended language, or dynamic language, is a programming language used to control software applications. Scripts are usually saved in text (such as ASCII) and are only interpreted when called. or compile.
Common examples of this type include JavaScript, VBScript, Perl, PHP, Python, and Ruby.
The script language is characterized by simple syntax, which is generally saved in text form and does not need to be compiled into a target program. It is directly interpreted when called. This can be regarded as a criterion for judging scripting languages. For example, with JavaScript, you only need to use Notepad to create a new Html file and add a script in it. When the browser opens the Html file, the JS script will naturally be called.
In short, you can use Notepad to write programs. It is basically a scripting language that does not require a compilation environment to generate target programs.
For more programming related content, please pay attention to theProgramming Introductioncolumn on the php Chinese website!
The above is the detailed content of What are the scripting languages?. For more information, please follow other related articles on the PHP Chinese website!