Files
php_8/arrays/asort.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 ";
}