案例:php案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
3
4
<!DOCTYPE html>
5
<html>
6
<body>
7
8
<?php
9
$str = 'one,two,three,four';
10
11
// 零 limit
12
print_r(explode(',',$str,0));
13
14
// 正的 limit
15
print_r(explode(',',$str,2));
16
17
// 负的 limit
18
print_r(explode(',',$str,-1));
19
?>
20
21
</body>
22
</html>
23
24
25