您好,登錄后才能下訂單哦!
<?php //引入 phpqrcode 類庫 //phpqrcode下載地址:https://github.com/t0k4rt/phpqrcode require_once "phpqrcode/qrlib.php"; //第一種(缺省下在網頁中生成二維碼) //調用QRCode類下的png靜態方法 QRcode::png("this is a qrcode"); $content = "this is a qrcode"; //內容 $filename = time() . ".png"; //文件名 $level = QR_ECLEVEL_L; //容錯級別 $size = 10; //尺寸 $padding = 3; //邊距 //第二種(自定義下在網頁中生成二維碼) QRcode::png($content, false, $level, $size, $padding, true); //第三種(自定義下將生成的二維碼保存為圖片文件) QRcode::png($content, $filename, $level, $size, $padding, true); /*容錯級別 QR_ECLEVEL_L 為常量 0 約可糾錯7%的數據碼字 QR_ECLEVEL_M 為常量 1 約可糾錯15%的數據碼字 QR_ECLEVEL_Q 為常量 2 約可糾錯25%的數據碼字 QR_ECLEVEL_H 為常量 3 約可糾錯30%的數據碼字 */ ?>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。