int类型转换成string类型* @param $arr * @return array|string */ function intToStr($arr) { if (!is_array($arr)) { return (string)$arr; } ...
確定! 回上一頁