I am getting count of empty object as a '0' on local server and count of same empty obejct as a '1' on different server using PHP.
Can anybody give me some information whether we can set count start value in PHP or what is the reason behind this.
BElow is the sample xml :
<customer>
<name></name>
<address></address>
<Contact>
<!--<Mobile></Mobile>-->
<!--<Mobile></Mobile>-->
<Work></Work>
<Home></Home>
</Contact>
</customer>
我正在从上面的xml构造objet,然后从该对象中获取值。
Ex:赞:$ object-&gt; customer-&gt; contact-&gt; Mobile
问题引发如果我在xml中没有移动标签:
的var_dump($对象 - &GT;客户 - &GT;非接触&GT;移动);
答案 0 :(得分:1)
阅读count()
文档中的这些摘录:
对于对象,如果安装了SPL,则可以挂钩到count() 实现接口Countable。界面只有一个 方法,Countable :: count(),它返回的返回值 count()函数。
和...
返回array_or_countable中的元素数。如果是参数 不是数组,也不是具有已实现的Countable接口的对象, 1将被退回。如果是array_or_countable,则有一个例外 NULL,将返回0。
如果您没有在一个地方安装SPL和/或没有实现Countable
接口的类,您可能会得到意想不到的结果。
编辑:我看到你在这里使用SimpleXMLElement。它没有实现Countable
,因此您不应该尝试count()
。