mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
14 lines
168 B
PHP
14 lines
168 B
PHP
<?php
|
|
$arr = [
|
|
'a' => 'one',
|
|
'b' => 'two',
|
|
'c' => 'three',
|
|
'd' => 'four'
|
|
];
|
|
|
|
asort($arr);
|
|
|
|
foreach($arr as $key => $val) {
|
|
echo " $key => $val ";
|
|
}
|