摘要:
主菜单,通过reLaunch来跳转,其他页面通过navigateTo来跳转。 阅读全文
摘要:
模拟昵称,随机时间,数组合并,数组去重,数组排序。 阅读全文
摘要:
``` /** * 数组去重 */ public function arrayUnique($arr) { $count = count($arr); $res = []; for ($i = 0;$i < $count ;$i++) { $tmp = $arr[$i]; unset($arr[$i]); if (!in_array($tmp,$arr)) { $res[] = $tmp; } } 阅读全文