首頁 >後端開發 >php教程 >如何在 PHP 中存取數組和物件中的元素?

如何在 PHP 中存取數組和物件中的元素?

Barbara Streisand
Barbara Streisand原創
2025-01-06 03:25:39405瀏覽

How Do I Access Elements in Arrays and Objects in PHP?

存取陣列與物件

陣列

要存取陣列元素,可以使用陣列元件[]。例如:

$array = ['foo', 'bar', 'baz'];
echo $array[0]; // prints 'foo'

物件

要存取物件屬性,請使用箭頭運算子 ->。例如:

$object = new stdClass;
$object->foo = 'bar';
echo $object->foo; // prints 'bar'

巢狀數組和物件

如果有巢狀數組或對象,可以使用上述運算子來存取它們。例如:

$array = [
    [1, 2, 3],
    [4, 5, 6]
];
echo $array[0][1]; // prints '2'

$object = new stdClass;
$object->foo = new stdClass;
$object->foo->bar = 'baz';
echo $object->foo->bar; // prints 'baz'

範例

在您的特定情況下:

$get_user = [
    0 => 10499478683521864,
    1 => '07/22/1983',
    2 => '[email protected]',
    3 => 'Alan',
    4 => 'male',
    5 => 'Malmsteen',
    6 => 'https://www.facebook.com  app_scoped_user_id/1049213468352864/',
    7 => (object) [
        'id' => 102173722491792,
        'name' => 'Jakarta, Indonesia'
    ],
    8 => 'id_ID',
    9 => 'El-nino',
    10 => 'Alan El-nino Malmsteen',
    11 => 7,
    12 => '2015-05-28T04:09:50+0000',
    13 => 1
];

要存取電子郵件地址,您可以使用:

$email = $get_user[2];

以上是如何在 PHP 中存取數組和物件中的元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn