What is the difference between php and js?

青灯夜游
Release: 2023-02-26 15:12:01
Original
3837 people have browsed it

There are differences between PHP and JS in the way of embedding pages, output syntax, data types, as well as defining variables, string splicing, type conversion, etc. Please refer to the following for more information. I hope it will be helpful to everyone.

What is the difference between php and js?

1. Embedding page method

JS embedding method:

<script></script>
Copy after login

PHP embedding method:

<?php     
?>(常用)
Copy after login

2. Output syntax

Javascript output

alert("警告的内容")
prompt("提示的内容")
document.write()(页面输出内容)
Copy after login

PHP output

echo(常用)//可同时输出多个字符串  
print  //只能输出一个字符串      
print_r();//可以打印数组
var_dump();//可输出变量的内容、类型和长度
Copy after login

3.Data type

JS Data Type

● Integer type (integer) int

● Single precision decimal float

● Double precision decimal double

● Decimal decimal

● Boolean bool (can only store two states)

● Date and time type datetime

● Character char (not commonly used) strong

● String string (not commonly used) strong

PHP data type

● bool Boolean type (storage two states)

●int Integer type

●float(double) Floating point type

●char Character

●string String

4. Define variables

JS Define variables:

var a = 10;
Copy after login

Note: If you define an integer or decimal variable, the value after the equal sign is written directly; if you define a string variable, the value after the equal sign needs to be enclosed in double quotes or single quotes)

PHP defines variables:

$a = 5;  $a = "hello";  $a = <<<A 
Copy after login

Note: If you define an integer or decimal variable, the value after the equal sign is written directly; if you define a string variable, the value after the equal sign needs to be enclosed in double quotes or single quotes. )

5. String splicing

String splicing in JS: use ""

eg:

"hello"+"world"
Copy after login

PHP String splicing: use "."

eg:

"hello"."world"
Copy after login

6. Case issues

js is strictly case-sensitive

## Custom function names in #php are not case sensitive. When naming a function, you cannot use declared functions or PHP's built-in function names.

7. The difference between control statements

else if and elseif are both supported in php, js only supports the former

8. Data Differences in types

There is an undefined type in js, but there is no such type in php.

So when a variable is not assigned any value, this type in js is undefined (use undeclared The variable will report an error), but in php it is of Null type;

And there is only number type in js, but there is no such type in php, replaced by int float type;

9. Type conversion

Type conversion in JS

转化为整数:parseInt();
转化为小数:parseFloat();
判断是否为合法数字类型:isNaN();
Copy after login

Type conversion in PHP

$a = (Int)$a;  //强制转化变量a为整数
$b = settype($b,"string");  //强制转化变量a为字符串
Copy after login

10. Differences in actual parameters

In js, there is no limit to the number of formal parameters and actual parameters. The number of formal parameters can be greater than the actual parameters, or it can be less than the actual parameters

And in php, the number of actual parameters If the parameters are greater than the formal parameters, no error will be reported, but when the number of actual parameters is less than the number of formal parameters (and an error will be reported when the unspecified formal parameters are undefined)

For more PHP related knowledge, please visit

PHP中文网!

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