Time of Update: 2017-01-13
下面就簡單說說如何利用 zend guard進行加密我們的php原始碼。目前zend guard最新的版本是 6.0,下載地址:http://www.zend.com/en/products/guard/downloads詳細的英文文檔說明在這裡:http://files.zend.com/help/Zend-Guard/zend-guard.htm#install.htm【注意】:使用zend guard加密後的代碼在執行php指令碼的時候需要載入解碼器:Zend Guard
Time of Update: 2017-01-13
有的時候,我們需要在php中利用到其他語言編寫的dll類庫,如C#編寫的dll,方法就是利用PHP new COM方法來調用,在調用之前先要把dll庫註冊並把程式集放入到全域緩衝中。1. 建立一個 C# Class Library ,命名為:HelloWorld2. 開啟項目的屬性,在點選左邊的 "Application"(就是第一個tab) , 然後點擊 Assembly Information 按鈕 , 在彈出的Dialog中, 必須在底部勾上: Make
Time of Update: 2017-01-13
選擇curl的理由關於curl與file_get_contents,摘抄一段通俗易懂的對比:file_get_contents其實是一堆內建的檔案操作函數的合并版本,比如file_exists,fopen,fread,fclose,專門提供給懶人用的,而且它主要是用來對付本地檔案的,但又是因為懶人的原因,同時加入了對網路檔案的支援;curl是專門用來進行網路互動的庫,提供了一堆自訂選項,用來應對不同的環境,穩定性自然要大於file_get_contents。使用方法1、開啟curl支援由於php
Time of Update: 2017-01-13
最近一直在微信群裡體驗紅包功能,紅包類型有•普通紅包•拼手氣紅包兩種普通紅包就不用多解析了,大鍋飯原理,平分。拼手氣紅包講的是手氣(運氣),有人可以搶到很多,有人搶的少得可憐,當然也不是先搶就一定多,說到底了就是隨機。 想了想,自己寫寫看,能不能實作類別似的功能(不敢說是演算法)。// $bonus_total 紅包總金額// $bonus_count 紅包個數// $bonus_type 紅包類型 1=拼手氣紅包 0=普通紅包function
Time of Update: 2017-01-13
代碼如下複製代碼 include("class.php");$path = $_get['path'];if($path == ""){ $path = "dir"; }else{ if(!strstr($path,"dir")){ $path =
Time of Update: 2017-01-13
代碼如下複製代碼 作者: freemouse 首頁: www.cnphp.info 介面demo: http://www.cnphp.info/tianqi 用法:
Time of Update: 2017-01-13
代碼如下複製代碼 class page{ var $page_name="page"; var $next_page='下一頁'; var $pre_page='上一頁'; var $first_page='首頁'; var $last_page='尾頁'; var $pre_bar='<<'; var $next_bar='>>'; var
Time of Update: 2017-01-13
<?//php教程 中文字串截取函數/**/ 代碼如下複製代碼 function substr($str = '', $offset = 0, $len = 0){ $len || ($len = strlen($str)); preg_match_all('/./us', $str, $result); return implode('',
Time of Update: 2017-01-13
代碼如下複製代碼 if(!$uploadaction):?><html><head><title>檔案上傳介面</title></head><body><table><tr align="center"><td><form enctype="multipart/form-data"
Time of Update: 2017-01-13
代碼如下複製代碼 function download($file_dir,$file_name)//參數說明://file_dir:檔案所在目錄//file_name:檔案名稱{ $file_dir = chop($file_dir);//去掉路徑中多餘的空格 //得出要下載的檔案的路徑 if($file_dir != '')
Time of Update: 2017-01-13
*/ 代碼如下複製代碼 $format ='php';$path ='www.111cn.net/';$files = getfile($path,$format);foreach( $files as $v ){ $tv = basename($v); list($name,$ext) = explode('.',$tv); $newname
Time of Update: 2017-01-13
inventory表 代碼如下複製代碼 create table inventory ( product tinytext not null, quantity tinytext not null, id int(4) default '0' not null auto_increment, description tinytext not null, price float(10,2) default '
Time of Update: 2017-01-13
代碼如下複製代碼 <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-
Time of Update: 2017-01-13
代碼如下複製代碼 function upload($uploadfile,$watermark=1,$watertype=1,$content){ foreach($uploadfile['name'] as $key=>$name)
Time of Update: 2017-01-13
範例程式碼: 代碼如下複製代碼 <form action="" method="post" enctype="multipart/form-data" ><input type="file" name="uploadfile[]"> 命名必是這樣有"[]"<input
Time of Update: 2017-01-13
目前我知道的方法有兩種,一種是使用php的創始人 rasmus lerdorf 寫的apc擴充模組來實現(http://pecl.php.net/package/apc),另外一種方法是使用pecl擴充模組uploadprogress實現(http://pecl.php.net/package/uploadprogress) 我這裡舉兩個分別實現的例子供參考,更靈活的應用根據自己需要來修改。apc實現方法:安裝apc,參照官方文檔安裝,可以使用pecl模組安裝方法快速簡捷,這裡不說明配置php.
Time of Update: 2017-01-13
代碼如下複製代碼 <?php /*通過檔案名稱,獲得檔案類型* *@author chengmo* *@copyright cnblog.com/chengmo 2010-10-17 *@version 0.1 *$filename="d:/1.png";echo cfiletypecheck::getfiletype($filename); 列印:png */ class cfiletypecheck { private static
Time of Update: 2017-01-13
三種php刪除檔案代碼 代碼如下複製代碼 if($od=opendir($d)) //$d是目錄名{ while(($file=readdir($od))!==false) //www.111cn.net 讀取目錄內檔案
Time of Update: 2017-01-13
代碼如下複製代碼 <?php session_start(); header("content-type:text/html;charset=utf-8"); require("stole_config.php"); require("conn.php"); require("keyword.php"); if(!empty($_post['ask'])) {
Time of Update: 2017-01-13
代碼如下複製代碼 <html><head> <meta http-equiv="content-type" content="text/html; charset=gb2312"> <meta name="author" content="verdana core, phpdoc.net inc.">