Time of Update: 2016-08-08
php /** * @desc 圖片處理類 */ class Pic{ private $info; private $res; public $thumb_pic; public function __construct($picPath){ //擷取圖片資訊 $this->info = getimagesize($picPath);
Time of Update: 2016-08-08
變數: 變數的含義:就是用於表示一個資料的代號——我們自己定義的一個名字。 變數的定義:var v1; var v2 = 2; var v3, v4, v5; var v6, v7=7, v8, v9=”abc”;變數的使用: 賦值:v1 = 1; v1 = 1+2+3; v1 = v2 + “abc”; v1 = v1 + 5; v1 = v1
Time of Update: 2016-08-08
一、基礎概念SOAP(Simple Object Access Protocol )簡易物件存取通訊協定 (SOAP)是在分散或分布式的環境中交換資訊的簡單的協議,是一個基於XML的協議,它包括四個部分:SOAP封裝(envelop),封裝定義 了一個描述訊息中的內容是什麼,是誰發送的,誰應當接受並處理它以及如何處理它們的架構;SOAP編碼規則(encoding rules),用於表示應用程式需要使用的資料類型的執行個體; SOAP RPC表示(RPC
Time of Update: 2016-08-08
名稱版本說明(變數列表來源於檔案 ngx_http_variables
Time of Update: 2016-08-08
網上有很多的php原始碼編譯介紹,但是幾乎沒有xdebug 的源碼編譯的介紹,我這裡結合自己的實際操作來談一下,其中也會涉及到apache原始碼的編譯。1. php編譯我們以vs2008來作為編譯工具;其他還需要php的編譯套件,這個可在php官方網下載http://windows.php.net/downloads/php-sdk/,下載這個吧:php-sdk-binary-tools-20110915.zip假設把它釋放到e:\php-sdk目錄下從開始菜單進入command-line模式:
Time of Update: 2016-08-08
轉帖請註明本文出自skypupil的部落格(http://blog.csdn.net/u011956441/article/details/44161587),請尊重他人的辛勤勞動成果,謝謝!我的應用程式情境是:在一個網頁上當使用者輸入郵箱地址並點擊“發送郵件”按鈕後,調用sendMail.php向使用者發送帶附件的郵件。遇到的問題是:當附件的名稱是英文名時能正確發送,但是當附件名是中文時,使用者郵箱就收不到附件。下面是我的解決方案:先上sendMail.php代碼:SMTPDebug = 4;
Time of Update: 2016-08-08
背景:使用Nginx和兩個Tomcat實現了負載平衡,並在防火牆中關閉了tomcat的連接埠(8080和8090),對外只開放80連接埠。Nginx配置如下:upstream tomcatCluster { server :8080 ; server :8090 ;}server{ listen 80; server_name dev.xjj.cn …… location / {
Time of Update: 2016-08-08
能做什麼PHP中的curl庫最基本的用途就是去簡單有效地*抓取網頁的內容*,然後利用抓取到的網頁資料經程式的方式進行處理和分析,最終得到你所想要的資料。當然了,這是最基本的用法,還有其他複雜有趣的用途,這取決於你的curl_setopt()行數的設定怎麼用首先,你的PHP中必須安裝有curl的擴充外掛程式,即phpinfo中有如下顯示然後就可以開始使用了,具體步驟:
Time of Update: 2016-08-08
/* * Created on 2011-11-09 * @author sundebiao * 此可以實現字串的倒序 * 支援純英文數字、純中文字串和中英文數字混合字串 * 中文需要使用GBK編碼 * 若傳入參數不為字串則返回false */function strrev_ext ($str){ $str = iconv('UTF-8', 'GBK', $str); if (is_string($str)) { $len = strlen($str);
Time of Update: 2016-08-08
盧教授的需求:';//if($r>26)$r=3200+$r-26;else $r=3100+$r;echo $r."".ini($r)."";$nm=ini($r);//file_put_contents("./data.txt",$r);//file_put_contents("./data.txt","\r\n");$tim=date("y-m-d H:i:s");$f=fopen("./data.xls", "a");$id=$_POST['id'];//
Time of Update: 2016-08-08
#策略(Strategy)模式#定義抽象類別 Lessonabstract class Lesson{private $duration;private $coststrategy;#定義屬性public function __construct($duration , CostStrategy $strategy){ #執行個體化時,傳進來一個對象#用CostStrategy 類來處理 某個行為,而不用調用自身的方法來處理$this->duration
Time of Update: 2016-08-08
概述:本文盤點PHP開發人員在編碼時,容易忽略或不注意引起的小失誤與錯誤。 變數聲明 如果在一條語句中聲明一個變數,如下所示:$var='value';編譯器首先會求出語句右半部分的值,恰恰正是語句的這一部分常常會引發錯誤。如果使用的文法不正確,就會出現解析錯誤。 解析錯誤 例如,Parse error:解析錯誤,unexpected T_WHILE in c:program filesapache groupapachehtdocsscript.php on line
Time of Update: 2016-08-08
我這裡只安裝了一個php-mysql就可以了~~[root@LAMP1 controllers]# yum install php-mysqlLoaded plugins: fastestmirror, prestoLoading mirror speeds from cached hostfile * base: mirrors.pubyun.com * extras: mirrors.163.com * updates: mirrors.skyshe.cnSetting up
Time of Update: 2016-08-08
dsn = isset($arr['dsn'])?$arr['dsn']:'mysql:host=localhost;dbname=project;';$this->user = isset($arr['user'])?$arr['user']:'root';$this->password = isset($arr['password'])?$arr['password'
Time of Update: 2016-08-08
正在設定 install-info (5.2.0.dfsg.1-2) .../etc/environment: line 2: CLASS_PATH: command not founddpkg: error processing package install-info (--configure): 子進程 已安裝 post-installation 指令碼 返回了錯誤號碼 127E: Sub-process /usr/bin/dpkg returned an error code
Time of Update: 2016-08-08
host=isset($arr['host'])?$arr['host']:'localhost'; $this->user=isset($arr['$password'])?$arr['user']:'root'; $this->password=isset($arr['password'])?$arr['password']:'7
Time of Update: 2016-08-08
有時,我們需要給文章中的關鍵詞加上連結,普通的文本可以用字串替換,但是在有html標籤時以及一個關鍵詞包含另一個關鍵詞的時候。用正則匹配?試寫了不少的,都沒有達到一個很好的效果。直到找到一篇文章 http://www.01happy.com/content-keyword-and-php-practice/ 本文對此做了些修改,更加符合了我自己的需求 執行個體下載地址:http://download.csdn.net/detail/wukangding/8488387
Time of Update: 2016-08-08
C#中使用webservice介面的時候,返給伺服器的IP地址是帶上了連接埠號碼的。但是有時候不能要那個連接埠(比如用nginx做了轉寄),就需要在服務端處理一下(處理內容就是後面的代碼)。此外,需要在設定檔中web.config中的system.web中添加一些東西:webServices>protocols>addname="HttpGet"/>addname="HttpPost"/>addname="HttpSoap"/>protocols>soapExtensionReflectorTy
Time of Update: 2016-08-08
同域請求json資料用戶端js代碼:View Code服務端端PHP代碼:function in_goodslist() { $callback = $this->fun->accept('callback', 'G'); $db_table = db_prefix . 'advert'; $db_where = ' WHERE isclass=1 AND atid=6'; $bann_array = array();
Time of Update: 2016-08-08
老外們把精力都放在了怎樣做通用性上面了。Doku後台有切換授權方式的選項,改成mysql。註:如下修改mysql.conf.php後,要把分組和使用權限設定結合起來,還需要配置dokuwiki的分組,zentao預設有一些角色分組:acl.auth.php# acl.auth.php# # Don't modify the lines above## Access Control Lists## Auto-generated by install script# Date: Mon, 0