Untitled
unknown
plain_text
3 years ago
253 B
19
Indexable
<?php
$users = [
'amir', // 0
'ali', // 1
'mohammad', // 2
'maryam', // 3
'sahar', // 4
];
// echo $users[3] . ' hello' . PHP_EOL;
// key, index
for($index = 0; $index < 5; $index++){
echo 'hello ' . $users[$index] . PHP_EOL;
}Editor is loading...