私は以下のようなクラスを持っています:
class Fields implements ArrayAccess, Countable, SeekableIterator
{
$this->_fields = array();
...continue
}
クラスに次のブール値機能を持たせたい
$myArray = new Fields();
if($myArray == false)
{
echo 'It is empty';
}
上記の動作をクラスに実装する方法