Untitled
unknown
plain_text
2 years ago
407 B
6
Indexable
<?php $users = [ [ 'name' => 'amir', 'phone' => '092112345678' ], // 0 [ 'name' => 'ali', 'phone' => '0921789456123' ], // 1 [ 'name' => 'mohammad', 'phone' => '0921147852369' ], // 2 ]; for ($index = 0 ; $index <3 ; $index++){ echo $users[$index]['name'].' '; echo $users[$index]['phone'] .PHP_EOL; }
Editor is loading...