|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对我一点用处没有啊,我知道该怎么学,但是我想如何才能更快的学,一周速成,啊不,24小时速成那种,皮皮你有没?中文 算术操作符
这些任务和根基的黉舍里教的内容类似。
Table 7-1. Arithmetic Operators(表7-1算术操作符)
example name result
$a + $b Addition Sum of $a and $b.?/FONT>
$a - $b Subtraction Remainder of $b subtracted from $a.?/FONT>
$a * $b Multiplication Product of $a and $b.?/FONT>
$a / $b Division Dividend of $a and $b.?/FONT>
$a % $b Modulus Remainder of $a divided by $b.
个中,除法操作符“/”前往一个整数值(整数除法的了局)假如两个操作数是整数(或是被转化成整数的字符串)的话。假如恣意一个操作数是浮点数,那末将停止浮点运算。
字符串操作符
这个中央仅唯一一个真实的字符串操作符:串连符号“.”。
$a = "Hello ";$b = $a . "World!";
// now $b = "Hello World!"
赋值操作符
根基的赋值操作符就是“=”。您常常会偏向于以为它的寄义就是“等于”。不要如许想,它真实的寄义就是左边的操作数取得右边表达式的值。
一个赋值表达式的意义在于值的指派。也就是说,“$a=3”的值是3。这就答应您做如许的工作:
$a = ($b = 4) + 5;
// $a is equal to 9 now, and $b has been set to 4.
作为赋值操作符的一个增补,还有一个针对二进制数和字符传停止操作的组合操作符,该操作符答应您在赋值方采取被赋值表达式的值。例如:
$a = 3;
$a += 5; // sets $a to 8, as if we had said: $a = $a + 5;
$b = "Hello ";
$b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!";
位操作符
位操作符答应您精密的操作数据的每个位。
Table 7-2. Bitwise Operators(表7-2位操作符)
example name result
$a & $b And Bits that are set in both $a and $b are set.?/FONT>
$a | $b Or Bits that are set in either $a or $b are set.?/FONT>
~ $a?/FONT> Not Bits that are set in $a are not set, and vice versa.
逻辑操作符
Table 7-3. Logical Operators(表7-3 逻辑操作符)
example name result?/FONT>
$a and $b And True of both $a and $b are true.?/FONT>
$a or $b Or?/FONT> True if either $a or $b is true.?/FONT>
$a xor $b Or?/FONT> True if either $a or $b is true, but not both.?/FONT>
! $a Not?/FONT> True if $a is not true.?/FONT>
$a && $b And?/FONT> True of both $a and $b are true.?/FONT>
$a || $b Or?/FONT> True if either $a or $b is true.
对照操作符
对照操作符,正如它的名字所示,答应您对照两个值。
Table 7-4. Comparson Operators(表7-4 对照操作符)
example name result?/FONT>
$a == $b Equal?/FONT> True if $a is equal to $b.?/FONT>
$a != $b Not equal True if $a is not equal to $b.?/FONT>
$a < $b Less than?/FONT> True if $a is strictly less than $b.?/FONT>
$a > $b Greater than?/FONT> True if $a is strictly greater than $b.?/FONT>
$a <= $b Less than or equal to?/FONT> True if $a is less than or equal to $b.?/FONT>
$a >= $b Greater than or equal to?/FONT> True if $a is greater than or equal to $b.
咱们就开始学习动态语言的概念吧,刚一接触动态语言,可能很多人都会蒙了,怎么这乱七八糟的东西,在网页里显示的时候却是另外一码事?其实这并不算乱七八糟,你写的HTML代码不也一样是一堆堆的字符吗?毕竟,代码并不是作为直接输出的,而是经过处理的,说白了,HTML是经过HTML解析器,而PHP当然也就通过PHP解析器了,跟学习HTML一样的道理,想让任何的解析器完成操作,就必须使用它们专用的语法结构,所以PHP长相奇怪也就不足为奇了。 |
|