function ObjList::__construct
Search API
| 7.x ObjList.php | ObjList::__construct() |
| 6.x ObjList.php | ObjList::__construct() |
| 4.x ObjList.php | ObjList::__construct() |
| 5.x ObjList.php | ObjList::__construct() |
File
- classes/
ObjList.php, line 8
Class
Code
function __construct()
{
$this->array_list = array();
$this->i = 0;
$this->count = 0;
$this->is_empty = true;
}
