2

我收到一个响应请求的数组。当我在上面做 print_r 时,这就是我得到的Array( [receiver] => {:email=>"email@domain.com"})

我无法理解如何访问“:email”的值。

请帮忙。

编辑:

这是响应的 var_dump。

array ( 'receiver' => '{:email=>"email@domain.com"}' )

谢谢。

4

1 回答 1

2

使用正则表达式获取电子邮件。

$arr = array('recebodor' => '{:email=>"someone@example.com"}');

$email = preg_replace('/{:email=>"([^"]+)"}/', '$1', $arr['recebodor']);
echo $email; // someone@example.com

解释:

{:email=>    Match with the "{:email=>" in the string
"([^"]+)"    Get any character within double quotes
}            Match with the last "}"
$1           Replace all text with the text found inside parentheses
于 2012-06-04T18:41:13.917 回答