toArray() public méthode

public toArray ( ) : array
Résultat array the list of items in array
Exemple #1
0
 public function testToArray()
 {
     $list = new TPagedList(array(1, 2, 3));
     $list->CustomPaging = true;
     self::assertEquals(array(1, 2, 3), $list->toArray());
 }