After running this sort, what will be the value of $b?
$a = array('_!', 'def', 0);
$b = sort($a);
array(0, 'def', '_!')
array('_!', 0, 'def')
array('def', 0, '_!)
None of the above
Submit