0

如何从这个数组中提取数值?

array (
  0 => '\'268',
  1 => '252',)

只需要去掉数字,然后我需要做一些计算。

4

1 回答 1

1
$source = array(
    0 => '\'268',
    1 => '252',
);

function strip($element)
{
    $matches = array();
    preg_match('#[0-9]+#', $element, $matches);
    return (int)reset($matches);
}

$result = array_map('strip', $source);

var_dump($result);

结果:

array (size=2)
  0 => int 268
  1 => int 252
于 2013-04-02T17:32:36.543 回答