var_dump 不打印整数值

发布于 2024-11-12 23:20:51 字数 290 浏览 2 评论 0原文

我正在尝试从 membase 读取一些值。 我观察到,当存在任何整数时,以下命令不起作用。

 var_dump($memcache->get("keyset123"));
 print_r($memcache->get("keyset123"));

如果获取结果是字符串,则上面的命令将打印。 如果获取结果是整数,则上述命令不会打印任何内容。

vardump 打印 =string(0) "" print_r 不打印任何内容。

你能告诉我出了什么问题吗

I am trying to read some values from the membase.
I observer that when there is any integer the following command is not working.

 var_dump($memcache->get("keyset123"));
 print_r($memcache->get("keyset123"));

If the get result is a string the above command prints.
If the get result is a Integer the above commands are printing none.

vardump prints =string(0) ""
print_r prints none.

can you please tell me what is the issue

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

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

发布评论

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

评论(2

久随 2024-11-19 23:20:51

这是因为 $memcache->get() 调用返回一个字符串值。您的问题出在其他地方(可能在所使用的代码的更深处),而不是在 var_dump() 中。

查看变量 $memcache 内存储的内容。

That is because the $memcache->get() call is returning a string value. Your problem lies elsewhere (likely deeper within the code in use), not within var_dump().

Look into what you're storing within whatever is inside of the variable $memcache.

唠甜嗑 2024-11-19 23:20:51
var_dump($memcache->get("keyset123"));
//outputs
//string(0) ""

Memcached 在键“keyset123”处存储一个空字符串,否则您将得到 FALSE(键不存在)或 NULL(键存在,但不存在值)

var_dump($memcache->get("keyset123"));
//outputs
//string(0) ""

Memcached is storing an empty string at the key "keyset123", otherwise you would be getting FALSE (key doesn't exist) or NULL (key exists, but no value exists)

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