Student Reviews
( 5 Of 5 )
1 review
Video of PHP Iterators & Iterable Type - Iterate Over Objects - Full PHP 8 Tutorial in PHP Native course by Program With Gio channel, video No. 56 free certified online
In this lesson, you will learn what iterators are & how to work with them in PHP. It may sound scary but it's actually pretty simple. With iterators you can define how you want your objects to be iterated on, by default when you iterate over objects in PHP it will iterate on visible properties on the object but sometimes you may want to iterate on a specific property of the object instead. Learn what Iterator, IteratorAggregate & Traversable interfaces are, what iterable data type is & how to implement a basic collection pattern that you might be familiar with from frameworks like Laravel.
SOME OF THE WAYS YOU CAN SUPPORT THE CHANNEL
Smash the like button
Subscribe to the channel & turn the notifications on
Post comments, any feedback is greatly appreciated
Become a Patreon: https://www.patreon.com/programwithgio
THANK YOU!
LESSON 2.22
Course Outline - https://github.com/ggelashvili/learnphptherightway-outline
Course Playlist - https://www.youtube.com/playlist?listPLr3d3QYzkw2xabQRUpcZ_IBk9W50M9pe-
RESOURCES
https://www.php.net/manual/en/language.oop5.iterations.php
https://www.php.net/manual/en/language.types.iterable.php
https://www.php.net/manual/en/class.iterator.php
https://www.php.net/manual/en/spl.iterators.php
https://www.php.net/manual/en/class.iteratoraggregate.php
CHAPTERS
00:00 - Iterating over objects
01:33 - Traversable, Iterator & IteratorAggregate interfaces
02:11 - Implement simple collection class using Iterator interface
07:50 - SPL iterators & refactoring collection to use IteratorAggregate interface
10:26 - Iterable type & type-hinting