how can reverse sort an array in php

how can  reverse sort an array  in php

<?php
$myworld 
= array("a"=>"everything","b"=>"nothing","c"=>"is"); arsort($myworld); print_r($myworld); ?>


Which prints this:

Array
(
[b] => nothing
[c] => is
[a] => everything
)