数组中的 PHP 字符串键给出了未定义的索引

发布于 2024-12-06 22:44:28 字数 872 浏览 0 评论 0原文

我有以下数组:

Array
(
    [A3L791B03M-YLWS] => 1
    [A3L791B03MBLKS5] => 1
    [A3L791B05M-BLKS] => 2
    [A3L791B05M-BLU] => 1
    [A3L791B05M-BLUS] => 1
    [A3L791B05M-GRY] => 2
    [A3L791B05M-H-S] => 1
    [A3L791B05M-REDS] => 1
    [A3L791B05M-S] => 2
    [A3L791B05M-WHTS] => 2
    [A3L791B05M-YLWS] => 2
    [A3L791B10M-BLKS] => 2
    [A3L791B10M-BLUS] => 2
    [A3L791B10M-GRNS] => 1
    [A3L791B10M-GRY] => 2
    [A3L791B10M-REDS] => 1
    [A3L791B10M-S] => 3
    [A3L791B10M-S?KIT] => 1
    [A3L791B10M-WHTS] => 2
    [A3L791B10M-YLWS] => 1
)

但是,当我尝试通过以下方式调用 A3L791b10M-S 的数据时:

echo $array_mysku_count['A3L791b10M-S'];

但是,当我这样做时,我收到以下错误:

致命错误:未捕获的异常“异常”,并带有消息“注意:未定义的索引” :A3L791b10M-S in...

所有其他键似乎都很好。导致这个问题的关键是什么?

I have the following array:

Array
(
    [A3L791B03M-YLWS] => 1
    [A3L791B03MBLKS5] => 1
    [A3L791B05M-BLKS] => 2
    [A3L791B05M-BLU] => 1
    [A3L791B05M-BLUS] => 1
    [A3L791B05M-GRY] => 2
    [A3L791B05M-H-S] => 1
    [A3L791B05M-REDS] => 1
    [A3L791B05M-S] => 2
    [A3L791B05M-WHTS] => 2
    [A3L791B05M-YLWS] => 2
    [A3L791B10M-BLKS] => 2
    [A3L791B10M-BLUS] => 2
    [A3L791B10M-GRNS] => 1
    [A3L791B10M-GRY] => 2
    [A3L791B10M-REDS] => 1
    [A3L791B10M-S] => 3
    [A3L791B10M-S?KIT] => 1
    [A3L791B10M-WHTS] => 2
    [A3L791B10M-YLWS] => 1
)

However, when I try to call for the data of A3L791b10M-S via:

echo $array_mysku_count['A3L791b10M-S'];

However, when I do so, I get the following error:

Fatal error: Uncaught exception 'Exception' with message 'Notice: Undefined index: A3L791b10M-S in...

All the other keys seems to be fine. Anything that is specific about this key that is causing this?

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

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

发布评论

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

评论(3

哽咽笑 2024-12-13 22:44:28

您使用的是 A3L791b10M-S 密钥,但它实际上是 A3L791B10M-S。请注意此处的大写 B

You're using the key A3L791b10M-S but it's actually A3L791B10M-S. Note the uppercase B there.

沧笙踏歌 2024-12-13 22:44:28

A3L791B10M-SA3L791b10M-S 不同。关注案例...

A3L791B10M-S is different from A3L791b10M-S. Watch the case...

回眸一笑 2024-12-13 22:44:28

将 b 更改为大写。

A3L791B10M-S

您可能还对 strtoupper 函数感兴趣。

Change the b to upper case.

A3L791B10M-S

You also may be interested in the strtoupper function.

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