Untitled
unknown
plain_text
3 years ago
407 B
10
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...