以字符串为键的数组的条件

发布于 2024-08-28 20:33:35 字数 278 浏览 10 评论 0原文

我的 PL/SQL 过程返回一个游标。它总是返回数据。我获取 (oci_fetch_assoc) 它并将其保存在数组中。如果找到结果,数组的键将是字符串。如果光标没有找到数据,它将返回值0,因此数组的键将是数字。

while($data = oci_fetch_assoc($cursor)){
    if(!isset($data[0])){
       ...
    }
...
...
}

检查数组不只是 0 并且包含数据的最佳方法是什么?

谢谢

My PL/SQL procedure returns a cursor. It always returns data. I fetch (oci_fetch_assoc) it and save it in an array. If results were found the keys of the array will be strings. If the cursor didn't find data, it will return value 0, thus the key of the array will be numeric.

while($data = oci_fetch_assoc($cursor)){
    if(!isset($data[0])){
       ...
    }
...
...
}

What's the best way to check that the array is not just 0, but contains data?

Thanks

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

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

发布评论

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

评论(4

摘星┃星的人 2024-09-04 20:33:35

这是我的解决方案:

if($data != array(0 => "0")){

它有效

Here is my solution:

if($data != array(0 => "0")){

and it works

恏ㄋ傷疤忘ㄋ疼 2024-09-04 20:33:35
if(!empty($data[0])) { ... }
if(!empty($data[0])) { ... }
最舍不得你 2024-09-04 20:33:35

oci_fetch_assoc 返回一个关联数组,即列名是数组中的索引。

尝试其中一个:

($data['firstColumn'] === 0)
(reset($data) === 0)

其中“firstColumn”是第一列的实际名称

oci_fetch_assoc returns an associated array, that is the column names are indexes in the array.

try one of these:

($data['firstColumn'] === 0)
(reset($data) === 0)

where 'firstColumn' is the actual name of the first column

喵星人汪星人 2024-09-04 20:33:35

您可以使用 '===' 来查看 $data[0] 是否等于 0。例如:

if($data[0]===0) {
   // It really is the number 0
}

You can use the '===' to see if $data[0] equals 0. Like:

if($data[0]===0) {
   // It really is the number 0
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文