Time of Update: 2016-08-08
代碼如下:date_default_timezone_set('PRC'); //預設時區 echo "今天:",date("Y-m-d",time()),""; echo "今天:",date("Y-m-d",strtotime("18 june 2008")),""; echo "昨天:",date("Y-m-d",strtotime("-1 day")), ""; echo "明天:",date("Y-m-d",strtotime("+1 day")
Time of Update: 2016-08-08
閱讀源碼的最好方式就是跟蹤調試代碼,這裡介紹了如何利用GDB調試nginx的配置和步驟。修改設定檔修改nginx.conf:#user nobody;master_process off;daemon off;daemon off;表示關閉守護進程模式,這樣就免除了用GDB跟蹤fork出的子進程了。如果預設啟用守護進程,標準輸出是被關閉的。因此關閉守護進程模式能夠利用printf方便查看變數的值。 master_process
Time of Update: 2016-08-08
PHP版本:PHP5 >= PHP5.2.0 命名空間是事物封裝的一種方式, 使用namespace:相對檔案路徑,當前工作路徑相對指令碼路徑; :相對子目錄路徑,當前工作路徑相對子目錄路徑; :絕地路徑: \namespace\directory\to\file empty()函數:判斷變數是否被認定為空白:認定為空白的條件是變數不存在或者變數的值為false; 使用運算式即為 !isset($var) ||
Time of Update: 2016-08-08
1、刪除字串的第一個字元:$string='';foreach($arrayas$key => $value){ $string .= ",$value";}$string = substr($string,1);2、定義頁面編碼格式:meta http-equiv=content-type content="text/html;
Time of Update: 2016-08-08
1、 安裝建議下載openresty ,包比較全,安裝簡單方便; 下載地址 http://openresty.org/download/ngx_openresty-1.7.10.1.tar.gz2、編譯安裝tar xzvf ngx_openresty-1.7.10.1.tar.gzcd ngx_openresty-1.7.10.1./configure --with-luajitmakemake install3、修改nginx config -
Time of Update: 2016-08-08
今天準備將一個php demo放在IIS下運行,網站在IIS下的配置是這樣的:應用程式集區是整合模式下的.net framework 2.0(2.0或4.0沒什麼關係,因為php以fastCGI的方式在跑), 應用程式集區標識配置為IIS內建的NETWORKSERVICE, 使用的認證方式為匿名驗證。開啟本地的網站,訪問php頁面,
Time of Update: 2016-08-08
工作過程中需要編譯php擴充的dll格式檔案 , 經過1天的折騰,終於編譯出來了,下面以編譯php5.3.28 下runkit擴充為例 , 官方的windows環境下php編譯過程參考下面這兩篇文章:https://wiki.php.net/internals/windows/stepbystepbuildhttp://blog.csdn.net/mycwq/article/details/10165955php5.3.28 , runkit編譯的過程基本就是跟文檔一致 ,
Time of Update: 2016-08-08
NGINX反向 Proxy、動靜結合一、預設輪詢模式好處:每個請求按時間順序逐一分配到不同的後端伺服器,如果後端伺服器down掉,能自動剔除。http { include mime.types; default_type application/octet-stream; #tcp_nopush on; keepalive_timeout 65;#反向 Proxy的配置 這是配置的兩台機器 可以是多台upstream test{server
Time of Update: 2016-08-08
1、下載visual box 和 vgarant兩個 工具,安裝http://vagrantup.comhttps://www.virtualbox.org/2、添加homestead的box到vagrant3、建立一個虛擬機器組態檔git clonehttps://github.com/Swader/homestead_improved 你的目錄4、修改Homestead.yaml配置folders就是Windows的實際目錄對應的虛擬機器裡邊的目錄sites就是網站名稱對應的虛擬機器的目錄5
Time of Update: 2016-08-08
一、 緩衝原理:IE:將資源檔儲存至本地Smarty:將緩衝儲存到伺服器編譯 二、 為什麼使用緩衝技術1、提升網站訪問速度2、減輕web伺服器壓力3、減輕資料庫伺服器壓力三、 設定緩衝1、在smarty中,設定緩衝主要通過以下幾行代碼:l $smarty->setCacheDir($cache_dir)設定緩衝目錄將來產生的快取檔案會自動放在這個目錄下l
Time of Update: 2016-08-08
nginx 反向 Proxy及動靜分離http { include mime types; default_type application octet-stream; tcp_nopush on; keepalive_timeout 65;upstream test{ shttp { include mime.types; default_type application/octet-stream; #tcp_nopush on;
Time of Update: 2016-08-08
php/** * Class Rpt redis 用於報表的緩衝基本存放裝置和讀寫 2.0 * @simple * Rpt::read("diamond.account",$nick); * Rpt::readSync("diamond.account",$nick); * $finder = Rpt::createFinder("diamond.account",$nick); * $finder->read(); * $finder->readSync(); * *
Time of Update: 2016-08-08
query("$sql");// }//建立一個id儲存表,其實也沒必要非得叫id,如果業務量大按年月日也行, 按增量也行。// CREATE TABLE `test`.`create_id` (`id` BIGINT( 20 ) NOT NULL AUTO_INCREMENT PRIMARY KEY) ENGINE = MYISAM;//建立一個總表
Time of Update: 2016-08-08
rsync remote shell 增量方式同步資料rsync同步檔案有兩種方式,一種是daemon的方式(rsync daemon)另一種方式是通過遠程shell方式(rsync remote shell)。兩種方式的區別daemon方式,這種方式通過TCP方式串連遠程rsync daemon,需要使用設定檔,並啟用daemon進程。rsync [OPTION] user@host::src destrsync [OPTION] src user@host::destremote
Time of Update: 2016-08-08
進入設定檔:vi /usr/local/webserver/nginx/conf/nginx.confupstream www.linux.com{ server 192.168.1.204:80; } proxy_cache_path /data0/htdocs/www/aaa levels=1:2 keys_zone=aaa:20m max_size=1g; server { listen 80;
Time of Update: 2016-08-08
1、對於php檔案,在雙引號裡面引入變數需要加{變數名};.變數名或者.變數名.;$a ="gegweg{$demo};$a ="gegweg".$demo;$a ="gegweg".$demo."fweffwef"; 2、對於js檔案,引入變數要添加+號,Var demo;Alert("gegwg"+demo);/而對於json格式,只需要在鍵值後面添加變數名:3、Vardemo="nike";var txt ='{"employees":['
Time of Update: 2016-08-08
一個頁面中,有些資料緩衝,有些資料不緩衝,就是局部緩衝l $smarty->assign(“var”, “value”, true)第三個參數:表示是否不緩衝l {$var nocache=true}在模板變數量後使用nocache參數l
Time of Update: 2016-08-08
源碼安裝nginx這裡裝nginx的三個依賴,分別是pcre、openssl、zlib 其中編譯pcre需要:yum install gcc gcc-c++ pcre-devel下載源碼包官網下載最新版即可:http://www.pcre.org/http://www.openssl.orghttp://www.zlib.net/http://nginx.org注意:這裡pcre只能是是8.0+,pcre2不支援 會報錯:make[2]: *** No rule to make target `
Time of Update: 2016-08-08
php //查詢多條記錄,返回二維數組 $result = M("admin")->select(); $result = M("admin")->where("id>2")->select(); $result = M("admin")->where("id>2")->order("id desc")->limit("0,5")->field("id,username,psssword")->select(); $result =
Time of Update: 2016-08-08
CDbCriteria代表一個標準的查詢, 如條件,order by和limit.它是一個資料封裝對象,相當於SQL語句的各部分的載體CDbCriteria 公用屬性:CDbCriteria.alias string 類型 表別名.CDbCriteria.condition string 類型 查詢條件CDbCriteria.distinct boolean 類型 是否只選擇不相同的資料行CDbCriteria.group string 類型