分解字符串并返回不包含空元素的数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分解字符串并返回不包含空元素的数组相关的知识,希望对你有一定的参考价值。
<?php /* Function: eexplode Explodes an string and removes any empty elements in the resulting array Parameters: $separator - The separator used to explode the $string $string - The string to explode Returns: An array with no empty elements Example: print_r(explode(":","evan:walsh:")); Array( [0] => evan [1] => walsh [2] => ); print_r(eexplode(":","evan:walsh:")); Array( [0] => evan [1] => walsh ); */ function eexplode($separator,$string){ foreach($array as $key => $val){ } } return $array; }
以上是关于分解字符串并返回不包含空元素的数组的主要内容,如果未能解决你的问题,请参考以下文章