摘要:
public function getIP() { if (getenv("HTTP_CLIENT_IP")) $ip = getenv("HTTP_CLIENT_IP"); else if(getenv("HTTP_X_FORWARDED_FOR")) $ip = getenv("HTTP_X_FORWAR... 阅读全文
posted @ 2017-12-05 16:17
昃昃
阅读(203)
评论(0)
推荐(0)
摘要:
// 生成UUID,并去掉分割符 function guid() { if (function_exists('com_create_guid')){ $uuid = com_create_guid(); }else{ mt_srand((double)microtime()*10000);//optional for php 4.2.0 and... 阅读全文
posted @ 2017-12-05 16:16
昃昃
阅读(382)
评论(0)
推荐(0)
摘要:
在初始化git之后(git init),同时在github建立好仓库之后,本地也新增了ssh kye(ssh-keygen -t rsa -C ‘mail address’),同时也在本地新增了远程仓库(git remote add origin github地址), 但是在git push的时候出 阅读全文
posted @ 2017-12-05 10:13
昃昃
阅读(11733)
评论(1)
推荐(4)