<?php$str = 'one|two|three|four';print_r(explode('|', $str, 2));結(jié)果Array([0] => one[1] => two|three|four)
explode()最后的的limit如果是正數(shù)的話應該怎么用?為什么呢?
蕭十郎
2022-04-03 12:09:52