Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有几个这样的数组:
$data1 = array(80, 'P3'); $data2 = array(55, 'P3'); $data3 = array(90, 'P3');
如何找到一些数组的最大值?请帮助我,谢谢:)
$x = array_merge($data1, $data2, $data3); sort($x); $highest = array_pop($x);