摘要:
在学习git的时候,发现不能使用git clone从github.com下载,报了个ssl错误。 Cloning into cancan... error: SSL certificate problem, verify that the CA cert is OK. Details: error: 阅读全文
摘要:
/** * 把金额由元转为分 */ public static function amountToFen($amount){ $amount = $amount * 100; if(strpos($amount, '.') !== false){ return ceil($amount); ... 阅读全文