Advertisement
Guest User

Untitled

a guest
May 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. class Collection
  4. {
  5. protected $items = [];
  6. public function __construct(array $items)
  7. {
  8. $this->items = $items;
  9. }
  10. }
  11.  
  12. $collection = new Collection([1, 2, 41, 60]);
  13.  
  14. echo count($collection);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement