摘要:
<?php header('content-type:text/html;charset=utf-8');date_default_timezone_set('Asia/Shanghai');echo date_default_timezone_get(); //date(Y/M/d); // // 阅读全文
摘要:
<?phpheader('content-type:text/html;charset=utf-8');// array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)foreach (range(0, 12) as $number) { echo $number 阅读全文
摘要:
<?php$array=array(1,2,3,4,5,6);function test1(&$var){ $var*=3;}$res=array_walk($array,"test1");//array_walk(array,funcname);print_r($res);print_r($arr 阅读全文
摘要:
安装流程 1 不连网安装 2 安装完成后重启 3 移出不需要的软件 4 运行autoremove 然后再重启 5 安装网卡驱动--重启 6 更新apt update(可以改变/etc/apt/sources.list)或把已经下载的更新包复制到/var/cache/apt/archives/ /** 阅读全文