使用数组中的数据

发布于 2024-11-18 13:10:35 字数 434 浏览 3 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖伴 2024-11-25 13:10:35

将数组分配给变量,然后您可以轻松访问它:

$attributes = $openid->getAttributes();
$strEmail = $attributes['contact/email'];
echo $strEmail; // => users_name@email_address.com

Assign the array to a variable and then you can easily access it:

$attributes = $openid->getAttributes();
$strEmail = $attributes['contact/email'];
echo $strEmail; // => users_name@email_address.com
未央 2024-11-25 13:10:35

在您的具体情况下,您可以这样做:

$strEmail = reset($openid->getAttributes());

但是最好提出建议,因为这也适用于其他情况:

$attributes = $openid->getAttributes();
$strEmail = $attributes['contact/email'];

有关更多详细信息,请参阅关于数组的 PHP 手册 如何访问它们。

In your specific case, you can do:

$strEmail = reset($openid->getAttributes());

However it's better to suggest as this will work for other cases,too:

$attributes = $openid->getAttributes();
$strEmail = $attributes['contact/email'];

For more details see the PHP Manual about arrays how to access them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文