Home > php教程 > php手册 > body text

php的一些小问题

WBOY
Release: 2016-06-06 20:34:30
Original
1185 people have browsed it

这是我日常使用中的一些问题,经过baidu google大叔们的帮助学会的

整理出来2个给大家学习学习

1、三个等号和二个等号的区别 "===" VS "=="

比如你一个函数会返回这几种情况:
1、大于0的数
2、小于0的数
3、等于0的数(也就是0啦)
4、False(失败时)
这时候如果你想捕获失败的情况,你就必须用===,而不能用==
因为==除了会匹配第4种情况外,还会匹配第3种情况,因为0也是假!

在来一个

$a='2';//字符型2
$b=2;//数值型2
$a==$b,是对的,都是2
$a===$b,是不对的,因为$a是字符型$b是数值型,值虽一样,但类型不一样。


2、php中三个尖括号是做什么的 "
代码如下:
$somevar = put your code or words here
someword;

这是代码段。PHP中代码段的使用有一个好处,就是当你需要输出一段代码时(可以包括多行),代码段可以保持一个更具逻辑性的形态。经常用来插入HTML代码。

注意someword是任意字符,表示的是一个标记的意思。
可以用于赋值中同时包含单引号和双引号 恩 pw中很多这个
Related labels:
php
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template