开发者

PHP - Normalize user input array

If have an array like this:

array
  0 => string '62 52, 53' (length=9)
  1 => string '54' (length=2)

It's from user input, and you never know how/what they enter ;)

What I want in the end is this:

array
  0 => string '62' (length=2)
  1 => string '52' (length=2)
  2 => string '53' (length=2)
  3 => string '54' (length=2)

Here's how I do it:

  $string = implode(',', $array);
  $string = str_replace(', ', ',', $string);
  $string = str_replace(' ', ',', $string);
  $array = explode(',', $string);

Seems really clunky. Is there a more elegant way? One that maybe has better per开发者_开发百科formance?


On each string:

preg_match_all("/[ ,]*(\d+)[ ,]*/", $list, $matches);

Then read $matches[1] for the numbers


Not sure about performance but you can use a regex to grab only numbers after you join everything into a string.

$string = implode(' ', $array);
preg_match_all('/\d+/', $string, $matches);
print_r($matches[0]);


You may want to use preg_split and array_merge (PHP 4, PHP 5)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜