本文整理匯總了PHP中Image::buildImageVerify方法的典型用法代碼示例。如果您正苦於以下問題:PHP Image::buildImageVerify方法的具體用法?PHP Image::buildImageVerify怎麽用?PHP Image::buildImageVerify使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Image
的用法示例。
在下文中一共展示了Image::buildImageVerify方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: verify
public function verify()
{
//位數,類型,圖像格式,寬度,高度
import('ORG.Util.Image');
//讀取thinkPHP框架下的Image類
Image::buildImageVerify(1, 1, 'png', 60, 25);
}
示例2: verify
public function verify()
{
//導入驗證碼類
import('ORG.Util.Image');
//對驗證碼的輸出格式進行設置,生成的驗證碼會被進行md5加密,並存儲在session中
Image::buildImageVerify(4, 1, 'png', 80, 25);
}
示例3: code
public function code()
{
$w = isset($_GET['w']) ? $_GET['w'] : 30;
$h = isset($_GET['h']) ? $_GET['h'] : 30;
import('ORG.Util.Image');
Image::buildImageVerify(2, 1, 'png', $w, $h, 'code');
}
示例4: verifyCode
public function verifyCode()
{
//導入驗證碼類
//因為圖像處理類並不是係統當中的核心類,因此,我們在使用的時候,他不會自動加載過來。我們需要導入一次
import('ORG.Util.Image');
//代表當前項目的LIB文件夾
//import('@.Org.Image');
//第一個參數為長度 默認為4個長度
//第二項為模式,類型 0字母(默認) 1數字,2大寫字母,3為小寫字母 4中文,5混合
//第三個,圖像輸出的類型 默認為png ,有些同學的服務器上麵沒有開png的話,請將此處可以直接改
//第四項,寬度 是根據長度自動計算
//第五項,高度 22
// 第六項,驗證碼保存在session當中的名稱,不建議大家修改
//Image::buildImageVerify(4,5,'png',90,30,'signin_verify_code');
Image::buildImageVerify();
//Image::GBVerify();
//length
//type
//width
//height
//fontface
//verifyName
//buildImageVerify();
// simhei.ttf
}
示例5: verify
public function verify()
{
import("ORG.Util.Image");
//圖像操作類庫
$type = isset($_GET['type']) ? $_GET['type'] : 'gif';
Image::buildImageVerify(4, 1, $type);
}
示例6: verify_code
/**
* 驗證碼
*/
public function verify_code()
{
$w = isset($_GET['w']) ? (int) $_GET['w'] : 50;
$h = isset($_GET['h']) ? (int) $_GET['h'] : 30;
import("ORG.Util.Image");
Image::buildImageVerify(4, 1, 'png', $w, $h);
}
示例7: verify
function verify()
{
//導入驗證碼類
import('ORG.Util.Image');
//輸出產生驗證碼
Image::buildImageVerify();
}
示例8: verify
public function verify()
{
//導入ThinkPHP擴展中的驗證碼庫
import('ORG.Util.Image');
//調用驗證碼生成函數,第一個參數表示驗證碼位數,第二個參數表示類型
//第二個參數=5時為大小寫+數字的混合模式,嚴格區分大小寫
Image::buildImageVerify(1, 1, 'png');
}
示例9: verify
public function verify()
{
import('ORG.Util.Image');
// 本地用
// import("@.ORG.Image");//去服務器用
Image::buildImageVerify();
// Image::buildImageVerify(5,1,png,50,26);
}
示例10: Verify
public function Verify()
{
// import("ORG.Util.Image");
// Image::buildImageVerify(4, 5, 'png', 60, 34);
import("ORG.Util.Image");
ob_end_clean();
Image::buildImageVerify();
}
示例11: verify
function verify()
{
import('ORG.Util.Image');
if (isset($_REQUEST['adv'])) {
Image::showAdvVerify();
} else {
Image::buildImageVerify();
}
}
示例12: m__vcode
function m__vcode()
{
require_once dirname(__FILE__) . "/core/imgcode.class.php";
$name = !isset($_GET['c']) || $_GET['c'] == '' ? 'login' : $_GET['c'];
$w = !isset($_GET['w']) || $_GET['w'] == '' ? '60' : $_GET['w'];
$h = !isset($_GET['h']) || $_GET['h'] == '' ? '24' : $_GET['h'];
if ($name == 'login' || $name == 'reg' || $name == 'feedback' || $name == 'tougao') {
Image::buildImageVerify(5, 2, 'png', $w, $h, $name);
}
}
示例13: code
/**
* 驗證碼實現
*/
public function code()
{
//$w=$_GET['w'];//標簽庫文件裏定義了這個w變量了__APP__/Public/verify?w={$width}&h={$height}
$w = I('get.w');
$h = I('get.h');
//$h=$_GET['h'];//標簽庫文件裏定義了這個h變量了__APP__/Public/verify?w={$width}&h={$height}
import('ORG.Util.Image');
//引入圖片類文件
Image::buildImageVerify(4, 1, 'png', $w, $h, 'verify');
//生成圖片驗證代碼 0 字母 1 數字 2 大寫字母 3 小寫字母 4中文 5混合 verify是驗證碼的SESSION記錄名稱
}
示例14: verify
/**
*生成並設置驗證碼
*/
public function verify()
{
$sessionMysql = new SessionMysql();
////////設置驗證碼//////
$rand = '';
for ($i = 0; $i < 4; $i++) {
$rand .= dechex(mt_rand(1, 15));
//十六進製1~F
}
$_SESSION['verify'] = md5($rand);
////////生成並輸出驗證碼////////
import('Image');
Image::buildImageVerify('png', 50, 30, $rand);
}
示例15: verify
/**
* 驗證碼
* @author Terry <admin@huicms.cn>
* @date 2013-03-23
*/
public function verify()
{
import('ORG.Util.Image');
$ary_data = D('Config')->getCfgByModule('CODE_SET');
if (!empty($ary_data) && is_array($ary_data)) {
$ary_data['RECODESIZE'] = json_decode($ary_data['RECODESIZE'], true);
$ary_data['BACODESIZE'] = json_decode($ary_data['BACODESIZE'], true);
}
if (!empty($ary_data['BUILDTYPE']) && $ary_data['BUILDTYPE'] == '4') {
Image::GBVerify($ary_data['BACODENUMS'], $ary_data['EXPANDTYPE'], $ary_data['BACODESIZE']['width'], $ary_data['BACODESIZE']['height'], 'simhei.ttf', 'code');
} else {
Image::buildImageVerify($ary_data['BACODENUMS'], $ary_data['BUILDTYPE'], $ary_data['EXPANDTYPE'], $ary_data['BACODESIZE']['width'], $ary_data['BACODESIZE']['height'], 'code');
}
// Image::buildImageVerify(6, 1, 'png', 100, 38, 'code');
}