array_unique可以用于多维数组吗

发布于 2024-10-06 02:48:38 字数 36 浏览 3 评论 0原文

我只是想知道 array_unique 是否可用于多维数组

i just wanted to know whether array_unique be used for multi dimensional arrays

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

简单爱 2024-10-13 02:48:38

来自文档

请注意,array_unique() 不适用于多维数组。

From the docs:

Note that array_unique() is not intended to work on multi dimensional arrays.

暗喜 2024-10-13 02:48:38

来自 php.net 的 array_unique 页面

注意:注意 array_unique() 不是
旨在多维工作
数组

From php.net's page on array_unique

Note: Note that array_unique() is not
intended to work on multi dimensional
arrays

少钕鈤記 2024-10-13 02:48:38

array_unique() 不适用于多维数组。

array_unique() is not intended to work on multi dimensional arrays.

怪我入戏太深 2024-10-13 02:48:38

只需转到这里 http://php.net/manual/en/function.array- unique.php 并阅读此“注意:请注意 array_unique() 不适用于多维数组

just go here http://php.net/manual/en/function.array-unique.php and read this "Note: Note that array_unique() is not intended to work on multi dimensional arrays"

北陌 2024-10-13 02:48:38
<?php

$array = array(
    array(
        'id'    => 123,
        'name'  => 'Some Product',
        'ean'   => '1234567890123'
    ),
    array(
        'id'    => 123,
        'name'  => 'Some Product',
        'ean'   => '4852950174938'
    ),
    array(
        'id'    => 123,
        'name'  => 'Some Product',
        'ean'   => '1234567890123'
    ),
);
$uniqueArray = array_unique($array);
var_dump($uniqueArray);
?>

输出

array(1) {
  [0]=>
  array(3) {
    ["id"]=>
    int(123)
    ["name"]=>
    string(12) "Some Product"
    ["ean"]=>
    string(13) "1234567890123"
  }
}

请参阅http://php.net/manual/en/function.array-unique.php

<?php

$array = array(
    array(
        'id'    => 123,
        'name'  => 'Some Product',
        'ean'   => '1234567890123'
    ),
    array(
        'id'    => 123,
        'name'  => 'Some Product',
        'ean'   => '4852950174938'
    ),
    array(
        'id'    => 123,
        'name'  => 'Some Product',
        'ean'   => '1234567890123'
    ),
);
$uniqueArray = array_unique($array);
var_dump($uniqueArray);
?>

Output

array(1) {
  [0]=>
  array(3) {
    ["id"]=>
    int(123)
    ["name"]=>
    string(12) "Some Product"
    ["ean"]=>
    string(13) "1234567890123"
  }
}

Please see that http://php.net/manual/en/function.array-unique.php

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