Files
php_8/arrays/array_multisort.php

9 lines
177 B
PHP

<?php
$fst = [3, 4, 2, 7, 1, 5];
$snd = ['world', 'Hello', 'yes', 'no', 'apple', 'wet'];
array_multisort($fst, $snd);
echo '<pre>';
print_r($fst);
print_r($snd);
echo '</pre>';