在这样的数组中:
$array['abc'] = 10; $array['foo'] = 90; $array['bar'] = 0; $array['baz'] = 50;
如何检索最高值项(上例中为90)和最低值(上例中为0)?
php
php ×1