<?php$str = 'one|two|three|four';print_r(explode('|', $str, 2));结果Array([0] => one[1] => two|three|four)
婷婷同学_
相关分类