摘要:
/** * CreateBy Song * @param String $url url地址 * @param Array $post url参数 * @return Array */ function PostCUrl($url, $post) { header("content-type:tex 阅读全文
摘要:
基本工厂 1 class User { 2 private $username; 3 public function __construct($username) { 4 $this->username = $username; 5 } 6 7 public function getUser() { 阅读全文
摘要:
number_format(需要转换的数字,保留小数个数,小数点符号,每三位的分隔符) echo number_format("1000000")."<br>"; //默认显示:1,000,000 echo number_format("1000000",2)."<br>";//默认显示:1,000 阅读全文