24 - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of 24.php

  1. <?php
  2. $i = ['3'=>'a','1'=>'c','2'=>'e','4'=>'b'];
  3. sort($i);
  4. var_dump($i);
  5. rsort($i);
  6. var_dump($i);
  7. asort($i);
  8. var_dump($i);
  9. arsort($i);
  10. var_dump($i);
  11. ksort($i);
  12. var_dump($i);
  13. natsort($i);
  14. var_dump($i);
  15. ?>
File Description
  • 24
  • PHP Code
  • 23 Nov-2020
  • 218 Bytes
You can Share it: