Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:写的时候注意一下文章标题和小标题,没必要重复
// + - * /
// $num = 100;
// 大家尽可能在运算符 左右2边,增加一个空格
// echo 100 * 0.8 - 10;
// % 数字除以数字,如果除不尽,会得到余数
// echo 10 / 3;
// echo '<hr>';
// echo 10 % 3;
// 10除以3,3*3=9,还剩1, 这个余数,就是除以后,除不了,剩下的。
// ++ --
// $num = 100;
// echo $num++;
// echo '<hr>';
// echo $num;
// ++ 的作用是,把数字自动+1,第一次为什么输出的是100呢,因为它是先输出,后加
// 第二次输出,就是加了1的数字了
// echo $num--;
// echo '<hr>';
// echo $num;
// 先加1,只要把++写到前面
// echo ++$num;
// echo --$num;
// . 连接
// 变量和数字 相连,必须中间有空格
// 可以连接字符串、数字、html代码,变量
// echo $num . 1;
// = 赋值运算符
// $num = 99;
// += -= *= /= %= .=
// $num = $num + 100;
// echo $num;
// ==========================上面2个示例是相等的
// $num += 100;
// echo $num;
// $num *= 10;
// echo $num;
// $num .= '块钱';
// echo $num;
// = 赋值运算符
// $num = 99;
// += -= *= /= %= .=
// $num = $num + 100;
// echo $num;
// ==========================上面2个示例是相等的
// $num += 100;
// echo $num;
// $num *= 10;
// echo $num;
// $num .= '块钱';
// echo $num;
$str = "apple,pear,banana,orange";
$arr = explode(",",$str);
print_r($arr);
echo "<br>";
$arr = explode(",",$str,3);