Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Test
- {
- public $data[] = ['Jedna', 'Dvě', 'Tři'];
- }
- $test = new Test();
- foreach($test as $row){
- dump($row); //dump array 0 - Jedna, 1 - Dvě, 2 - Tři
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement