Heim  >  Artikel  >  Backend-Entwicklung  >  php使用qr生成二维码的示例分享_PHP教程

php使用qr生成二维码的示例分享_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:40:31912Durchsuche

复制代码 代码如下:

ini_set('display_errors', 'on'); 
$PNG_TEMP_DIR = dirname(__FILE__).DIRECTORY_SEPARATOR.'temp'.DIRECTORY_SEPARATOR; 
$PNG_WEB_DIR = 'temp/'; 

include "qrlib.php";    // QRcode lib 

$data = 'http://www.jb51.net'; // data 
$ecc = 'H'; // L-smallest, M, Q, H-best 
$size = 10; // 1-50 

$filename = $PNG_TEMP_DIR.'qrcode_'.time().'.png'; 
QRcode::png($data, $filename, $ecc, $size, 2); 
chmod($filename, 0777); 
echo 'php使用qr生成二维码的示例分享_PHP教程'; 
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/718614.htmlTechArticle复制代码 代码如下: ?php ini_set('display_errors', 'on'); $PNG_TEMP_DIR = dirname(__FILE__).DIRECTORY_SEPARATOR.'temp'.DIRECTORY_SEPARATOR; $PNG_WEB_DIR = 'temp/'; include "...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn