真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何利用yii2生成二維碼

小編給大家分享一下如何利用yii2生成二維碼,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

城步ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!

生成二維碼的具體步驟如下所示:

1、在官網(wǎng)下載類庫(kù)

在官網(wǎng)下載類庫(kù)后,確保當(dāng)前PHP環(huán)境支持GD2,然后我們只需要使用phpqrcode.php就可以生成二維碼了。

phpqrcode.php提供了一個(gè)關(guān)鍵的png()方法,其中

  • 參數(shù)$text表示生成二位的的信息文本;

  • 參數(shù)$outfile表示是否輸出二維碼圖片 文件,默認(rèn)否;

  • 參數(shù)$level表示容錯(cuò)率,也就是有被覆蓋的區(qū)域還能識(shí)別,分別是 L(QR_ECLEVEL_L,7%),M(QR_ECLEVEL_M,15%),Q(QR_ECLEVEL_Q,25%),H(QR_ECLEVEL_H,30%);

  • 參數(shù)$size表示生成圖片大小,默認(rèn)是3;參數(shù)$margin表示二維碼周圍邊框空白區(qū)域間距值;

  • 參數(shù)$saveandprint表示是否保存二維碼并顯示。

2、下載后把解壓后的phpqrcode文件夾放到extensions文件夾下。

3、引入類

Yii::$enableIncludePath = false;
Yii::import ('application.extensions.phpqrcode.phpqrcode', 1 );

4、具體代碼

public function actionQrcode(){
        $this->breadcrumbs=array_merge($this->breadcrumbs,array(
                '生成二維碼'
        ));
        $qrcode_path='';
        $file_tmp_name='';
        $errors=array();
        if(!empty($_POST)){
            $content = trim($_POST['content']); //二維碼內(nèi)容
            $contentSize=$this->getStringLength($content);
            if($contentSize>290){
                $errors[]='字?jǐn)?shù)過長(zhǎng),不能多于150個(gè)字符!';
            }
            Yii::$enableIncludePath = false;
            Yii::import ('application.extensions.phpqrcode.phpqrcode', 1 );
            if(isset($_FILES['upimage']['tmp_name']) && $_FILES['upimage']['tmp_name'] && is_uploaded_file($_FILES['upimage']['tmp_name'])){
                if($_FILES['upimage']['size']>512000){
                    $errors[]="你上傳的文件過大,最大不能超過500K。";
                }
                $file_tmp_name=$_FILES['upimage']['tmp_name'];
                $fileext = array("image/pjpeg","image/jpeg","image/gif","image/x-png","image/png");
                if(!in_array($_FILES['upimage']['type'],$fileext)){
                    $errors[]="你上傳的文件格式不正確,僅支持 png, jpg, gif格式。";
                }
            }
            $tpgs=$_POST['tpgs'];//圖片格式
            $bas_path=dirname ( Yii::app ()->BasePath );
            $qrcode_bas_path=$bas_path.'/upload/qrcode/';
            if(!is_dir($qrcode_bas_path)){
                mkdir($qrcode_bas_path, 0777, true);
            }
            $uniqid_rand=date("Ymdhis").uniqid(). rand(1,1000);
            $qrcode_path=$qrcode_bas_path.$uniqid_rand. "_1.".$tpgs;
            $qrcode_path_new=$qrcode_bas_path.$uniqid_rand."_2.".$tpgs;
            if(Helper::getOS()=='Linux'){

                $mv = move_uploaded_file($file_tmp_name, $qrcode_path);
            }else{
                //解決windows下中文文件名亂碼的問題
                $save_path = Helper::safeEncoding($qrcode_path,'GB2312');
                if(!$save_path){
                    $errors[]='上傳失敗,請(qǐng)重試!';
                }
                $mv = move_uploaded_file($file_tmp_name, $qrcode_path);
            }
            if(empty($errors)){
                $errorCorrectionLevel = $_POST['errorCorrectionLevel'];//容錯(cuò)級(jí)別
                $matrixPointSize = $_POST['matrixPointSize'];//生成圖片大小
                $matrixMarginSize = $_POST['matrixMarginSize'];//邊距大小
                //生成二維碼圖片
                QRcode::png($content,$qrcode_path_new, $errorCorrectionLevel, $matrixPointSize, $matrixMarginSize);
                $QR = $qrcode_path_new;//已經(jīng)生成的原始二維碼圖
                $logo = $qrcode_path;//準(zhǔn)備好的logo圖片
                if (file_exists($logo)) {
                    $QR = imagecreatefromstring(file_get_contents($QR));
                    $logo = imagecreatefromstring(file_get_contents($logo));
                    $QR_width = imagesx($QR);//二維碼圖片寬度
                    $QR_height = imagesy($QR);//二維碼圖片高度
                    $logo_width = imagesx($logo);//logo圖片寬度
                    $logo_height = imagesy($logo);//logo圖片高度
                    $logo_qr_width = $QR_width / 5;
                    $scale = $logo_width/$logo_qr_width;
                    $logo_qr_height = $logo_height/$scale;
                    $from_width = ($QR_width - $logo_qr_width) / 2;
                    //重新組合圖片并調(diào)整大小
                    imagecopyresampled($QR, $logo, $from_width, $from_width, 0, 0, $logo_qr_width,
                    $logo_qr_height, $logo_width, $logo_height);
                    //輸出圖片
//                     header("Content-type: image/png");
                    imagepng($QR,$qrcode_path);
                    imagedestroy($QR);
                }else{
                    $qrcode_path=$qrcode_path_new;
                }
                $qrcode_path=str_replace($bas_path,'', $qrcode_path);
            }else{
                $qrcode_path='';
            }
        }
        $data=array('data'=>array('errors'=>$errors,'qrcode_path'=>$qrcode_path));
        $this->render ( 'qrcode',$data);
    }

免費(fèi)視頻教程分享:php視頻教程

4、前臺(tái)的上傳界面

request->hostInfo;
$matrixPointSize=6;
$matrixMarginSize=2;
$errorCorrectionLevel='M';
$tpgs='gif';
if(!empty($_POST)){
    $content=$_POST['content'];
    $matrixPointSize=$_POST['matrixPointSize'];
    $matrixMarginSize=$_POST['matrixMarginSize'];
    $errorCorrectionLevel=$_POST['errorCorrectionLevel'];
    $tpgs=$_POST['tpgs'];
}
$arrayCorrectionLevel=array('L'=>'L - Low (7%)','M'=>'M - Medium (15%)','Q'=>'Q - Quartile (25%)','H'=>'H - High (30%)');
$arrayTpgs=array('gif'=>'gif格式','png'=>'png格式','jpg格式');
?>

    
        
            
                在線生成二維碼
            
            
        
beginWidget ( 'CActiveForm', array (         'id' => 'qrcode-form',         'htmlOptions' => array (                 'id' => 'view_table',                 'class' => 'add-form padding-10',                 'enctype' => 'multipart/form-data'         ),         'enableAjaxValidation' => false ) ); ?>                  尺寸大小                                                        >                                                                                      邊距大小                                                        >                                                                                  容錯(cuò)級(jí)別                          'form-control'));?>                                            保存格式                          'form-control'));?>                                            二維碼內(nèi)容                              'form-control','maxlength'=>150));?>                                            二維碼logo圖片                                                                                                                      選擇文件                                                           endWidget(); ?>                           二維碼                                                                   生成失敗                                       
                                                                     " target="_blank">右鍵另存為二維碼                        renderPartial('/component/duoshuo_common');?>

以上是“如何利用yii2生成二維碼”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)頁題目:如何利用yii2生成二維碼
網(wǎng)址分享:http://weahome.cn/article/gdddep.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部