使用数组中的数据
在我的 php 页面上,我得到以下输出:
Array ( [contact/email] => users_name@email_address.com )
这是通过 php 代码中的以下行生成的:
print_r($openid->getAttributes());
如何从该数组中提取文本 users_name@email_address.com
并将其粘贴到变量$strEmail;
?
因此,当我回显变量时:
echo $strEmail;
它应该在屏幕上输出以下内容:
users_name@email_address.com
On my php page, I am getting the follow output:
Array ( [contact/email] => users_name@email_address.com )
This is produced via the following line in the php code:
print_r($openid->getAttributes());
How do I extract the text users_name@email_address.com
from that array and stick it into a variable $strEmail;
?
So when I echo the variable:
echo $strEmail;
It should output the following on screen:
users_name@email_address.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将数组分配给变量,然后您可以轻松访问它:
Assign the array to a variable and then you can easily access it:
在您的具体情况下,您可以这样做:
但是最好提出建议,因为这也适用于其他情况:
有关更多详细信息,请参阅关于数组的 PHP 手册 如何访问它们。
In your specific case, you can do:
However it's better to suggest as this will work for other cases,too:
For more details see the PHP Manual about arrays how to access them.