test汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字
Posted agegg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了test汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字相关的知识,希望对你有一定的参考价值。
<script>
console.log('hello world!');
</script>
<?php
$str = '1,2,3,4';
//缺省limit
print_r(explode(',',$str)); //Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 )
// 零 limit
print_r(explode(',',$str,0)); //Array ( [0] => 1,2,3,4)
// 正的 limit
print_r(explode(',',$str,2)); //Array ( [0] => 1[1] => 2,3,4)
// 负的 limit
print_r(explode(',',$str,-1)); //Array ( [0] => 1[1] => 2[2] => 3)
?>
以上是关于test汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字汉字的主要内容,如果未能解决你的问题,请参考以下文章