为什么有“<代码>>sort()”的阵列?
if ( is_array( $tables ) ) {
usort( $tables, sort );
} else {
echo "no array";
}
我总是得到这一警告:
(a) 估计参数1为阵列,显示
因此,php认为其阵列,但usort(
不是
heres the sort function:
function sort( $a, $b ) {
return strlen( $b ) - strlen( $a );
}