Blogger Information
Blog 15
fans 0
comment 0
visits 8944
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1、使用运算符 2
Original
480 people have browsed it

1、使用运算符

  1. // + - * /
  2. // $num = 100;
  3. // 大家尽可能在运算符 左右2边,增加一个空格
  4. // echo 100 * 0.8 - 10;
  5. // % 数字除以数字,如果除不尽,会得到余数
  6. // echo 10 / 3;
  7. // echo '<hr>';
  8. // echo 10 % 3;
  9. // 10除以3,3*3=9,还剩1, 这个余数,就是除以后,除不了,剩下的。
  10. // ++ --
  11. // $num = 100;
  12. // echo $num++;
  13. // echo '<hr>';
  14. // echo $num;
  15. // ++ 的作用是,把数字自动+1,第一次为什么输出的是100呢,因为它是先输出,后加
  16. // 第二次输出,就是加了1的数字了
  17. // echo $num--;
  18. // echo '<hr>';
  19. // echo $num;
  20. // 先加1,只要把++写到前面
  21. // echo ++$num;
  22. // echo --$num;
  23. // . 连接
  24. // 变量和数字 相连,必须中间有空格
  25. // 可以连接字符串、数字、html代码,变量
  26. // echo $num . 1;

2、赋值运算符

  1. // = 赋值运算符
  2. // $num = 99;
  3. // += -= *= /= %= .=
  4. // $num = $num + 100;
  5. // echo $num;
  6. // ==========================上面2个示例是相等的
  7. // $num += 100;
  8. // echo $num;
  9. // $num *= 10;
  10. // echo $num;
  11. // $num .= '块钱';
  12. // echo $num;

3、字符串函数

  1. // = 赋值运算符
  2. // $num = 99;
  3. // += -= *= /= %= .=
  4. // $num = $num + 100;
  5. // echo $num;
  6. // ==========================上面2个示例是相等的
  7. // $num += 100;
  8. // echo $num;
  9. // $num *= 10;
  10. // echo $num;
  11. // $num .= '块钱';
  12. // echo $num;

自行找5个字符串函数自行找5个字符串函数

  1. $str = "apple,pear,banana,orange";
  2. $arr = explode(",",$str);
  3. print_r($arr);
  4. echo "<br>";
  5. $arr = explode(",",$str,3);
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:写的时候注意一下文章标题和小标题,没必要重复
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post