Home > Article > Backend Development > 2Traversable interface
<code><span><span><?php </span><span>$obj</span> = <span>new</span> stdclass(); <span>$obj</span>->prop = <span>'hello'</span>; var_dump(<span>$obj</span><span>instanceof</span> Traversable); <span>// false</span></span></span></code>
<code>作用:检测一个类是否可以使用 <span>foreach</span> 进行遍历的接口。 php代码中不能用。只有内部的PHP类(用C写的类)才可以直接实现Traversable接口 php代码中使用Iterator或IteratorAggregate接口来实现遍历。 这个接口没有任何方法,它的作用仅仅是作为所有可遍历类的基本接口</code>').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });
The above introduces the 2Traversable (traversal) interface, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.