Time of Update: 2016-07-30
cookies array ready for the next request // Note: This currently ignores the cookie path (and time) completely. Time is not important, // but path could possibly lead to security problems. var $persist_referers = true; // For each
Time of Update: 2016-07-30
/** * 取得輸入目錄所包含的所有目錄和檔案 * 以關聯陣列形式返回 * author: flynetcn */function deepScanDir($dir){ $fileArr = array(); $dirArr = array(); $dir = rtrim($dir, '//'); if(is_dir($dir)){ $dirHandle = opendir($dir); while(false !== ($fileName =
Time of Update: 2016-07-30
cURL是一個利用URL文法規定來傳輸檔案和資料的工具,支援很多協議,如HTTP、FTP、TELNET等。最爽的是,PHP也支援 cURL 庫。本文將介紹 cURL 的一些進階特性,以及在PHP中如何運用它。為什麼要用 cURL?是的,我們可以通過其他辦法擷取網頁內容。大多數時候,我因為想偷懶,都直接用簡單的PHP函數:$content = file_get_contents("http://www.aezo.cn");// or$lines =
Time of Update: 2016-07-30
// 建立映像$image = imagecreatetruecolor(600, 450);// 分配一些顏色$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);$gray = imagecolorallocate($image, 0xC0, 0xC0, 0xC0);$darkgray = imagecolorallocate($image, 0x90, 0x90, 0x90);$navy =
Time of Update: 2016-07-30
frame,是網頁開發必須掌握的知識。例如後台架構、局部重新整理,頁面分割,都是frame的用途表現,尤其是後台頁面製作,使用frame會給使用者帶來非常舒適的使用感受。frame知識點包括(frameset標籤、frame標籤、iframe標籤)。下面就對其一一介紹。一、frameset1. 屬性①border設定架構的邊框粗細。②bordercolor設定架構的邊框顏色。③frameborder設定是否顯示架構邊框。設定值只有0、1;0 表示不要邊框,1
Time of Update: 2016-07-30
開啟檔案/include/taglib/channel.lib.php找到代碼else if($type=='self'){ if($reid==0) return ''; $sql = "SELECT id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath FROM `#@__arctype` WHERE reid='
Time of Update: 2016-07-30
先把時間設定成北京時間date_default_timezone_set('PRC');目前時間$curtime=date("Y-m-d H:i:s", time());由於周一的劃分跟我們平時所理解不太一樣,所以要分開判斷。if(date('D') == 'Mon'){上一周: $last_week_start=date("Y-m-d H:i:s",strtotime("last Monday")); $last_week_end=
Time of Update: 2016-07-30
classSqList{public$elem; public$length; public$size;}classLinear{const LIST_INIT_SIZE = 10; const LIST_INCREMENT = 5; private$list = null; /** * 構造一個空的線性表 */publicfunctioninitList() {$this->list = new SqList(); $this-
Time of Update: 2016-07-30
用PHP的json_encode來處理中文的時候, 中文都會被編碼, 變成不可讀的, 類似”\u***”的格式, 還會在一定程度上增加傳輸的資料量。echo json_encode("中文");//"\u4e2d\u6587"在PHP5.4之前的版本,我們只能通過編寫函數實現:functionjson_encode_cn($data) {$data = json_encode ( $data ); return preg_replace ( "/\\\u([0-9a-f]{4})/
Time of Update: 2016-07-30
刪除了 /etc/nginx下面的設定檔後使用 apt-get remove nginx 在重裝還是沒有設定檔解決辦法sudo apt-get remove --purge nginx nginx-common nginx-coresudo apt-get install nginx nginx-common nginx-core即可解決著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
Time of Update: 2016-07-30
測試結果:同一個頁面,2次開啟,第一次能擷取到Referer第二次擷取不到,很好奇原因所在。test1.php代碼是:'測試來源:直接載入頁面';echo '進入頁面';echo '測試來源:新視窗開啟';echo '進入頁面';test_cookie.php的代碼為:'Asia/Shanghai');//設定預設時區header('content-type:text/html; charset=utf8');//設定返回頭資訊echo date('Y-m-d H:i:s');echo "\r\
Time of Update: 2016-07-30
題記需要使用nginx的反向 Proxy功能,測試環境為centos+NGINX 1.8.0.跳過一些繁瑣的問題,直接記錄核心步驟(1)centos 安裝在VM中,因此需要注意網路連接問題(2)安裝nginx使用的是具有網路的yum功能(3)配置centos防火牆,需要開啟80 連接埠(4)nginx 反向 Proxy配置(5)效能最佳化設定(後續工作...)實現一. yum安裝nginx 先添加nginx源,測試使用最新的nginx 1.8.0rpm -ivh
Time of Update: 2016-07-30
$filepath=__FILE__;//echo
Time of Update: 2016-07-30
一、前言 今天簡單記錄下crontab的配置二、crontab目錄 /etc/crontab 檔案 這是系統啟動並執行調度任務 /var/spool/cron 目錄 使用者自訂的crontab任務放在此目錄下 ls –lrt /etc/cron* /etc/cron.deny 表示不能使用crontab命令的使用者 /etc/cron.allow 表示能使用crontab命令的使用者
Time of Update: 2016-07-30
在使用php建立圖片時,無法正常產生圖片header("Content-type: image/png");$img=imagecreatetruecolor(200,200);imagepng($img);imagedestroy($img);出現的居然是這樣的圖片: 清除緩衝後就能正常顯示了,加入 ob_clean();代碼如下:ob_clean();header("Content-type:
Time of Update: 2016-07-30
下面是總結的幾個使用方法include 'PHPExcel.php';include 'PHPExcel/Writer/Excel2007.php';//或者include 'PHPExcel/Writer/Excel5.php'; 用於輸出.xls的建立一個excel$objPHPExcel = new PHPExcel();儲存excel—2007格式$objWriter = new
Time of Update: 2016-07-30
一查詢數值型資料: SELECT * FROM tb_name WHERE sum > 100; 查詢謂詞:>,=,,!=,!>,!,= 二查詢字串 SELECT * FROM tb_stu WHERE sname = '小劉' SELECT * FROM tb_stu WHERE sname like '劉%' SELECT * FROM tb_stu WHERE sname like '%程式員' SELECT * FROM tb_stu WHERE sname like
Time of Update: 2016-07-30
Nginx負載平衡最近項目要設計到並發,所以設計項目架構時考慮到用Nginx搭建Tomcat叢集,再用Redis搭建分布式Session,下面將一步步分享我摸索的過程。 Nginx雖然小,但是功能方面確實非常的強大,支援反向 Proxy,Server Load Balancer,資料緩衝,URL重寫,讀寫分離,動靜分離等方面。下面最要說一下負載平衡的配置,下一篇將實驗與Redis的結合。Nginx負載平衡調度的方法
Time of Update: 2016-07-30
1.開發準備 安裝WAMP,使用的版本為WampServer Version 2.5,其中PHP的版本為5.5.12。 WAMP安裝目錄:D:\wamp apache目錄:D:\wamp\bin\apache php目錄:D:\wamp\bin\php 下載PHP-5.5.12源碼包,解壓到任意目錄。例如:E:\php-5.5.122.通過phpinfo()查詢php版本的編譯的相關資訊,主要查看: CompilerMSVC11 (Visual C++ 2012)
Time of Update: 2016-07-30
首先確保啟動php的gd2庫;在php.ini中啟動extension=php_gd2.dll;$im=imagecreatetruecolor(400,300);$red=imagecolorallocate($im,255,0,0);//imageellipse($im,40,20,20,20,$red);//imageline($im,0,0,400,300,$red);//imagerectangle($im,10,20,300,200,$red);//imagefilledrectan