摘要: /** * CreateBy Song * @param String $url url地址 * @param Array $post url参数 * @return Array */ function PostCUrl($url, $post) { header("content-type:tex 阅读全文
posted @ 2018-05-10 11:35 平凡的胖子 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 基本工厂 1 class User { 2 private $username; 3 public function __construct($username) { 4 $this->username = $username; 5 } 6 7 public function getUser() { 阅读全文
posted @ 2018-05-10 11:26 平凡的胖子 阅读(187) 评论(0) 推荐(0) 编辑
摘要: number_format(需要转换的数字,保留小数个数,小数点符号,每三位的分隔符) echo number_format("1000000")."<br>"; //默认显示:1,000,000 echo number_format("1000000",2)."<br>";//默认显示:1,000 阅读全文
posted @ 2018-05-10 11:23 平凡的胖子 阅读(4968) 评论(0) 推荐(0) 编辑