二維碼是二維條形碼的一種,可以將網址、文字、照片等信息通過相應的編碼算法編譯成為一個方塊形條碼圖案,手機用戶可以通過攝像頭和解碼軟件將相關信息重新解碼並查看內容。PHP可以使用php QR Code類庫生成二維碼。
1.google開放api
$urlToEncode="http://gz。altmi。com";
generateQRfromGoogle($urlToEncode);
function generateQRfromGoogle($chl,$widhtHeight ='150',$EC_level='L',$margin='0')
{
$url = urlencode($url);
echo '<img src="http://chart。apis。google。com/chart?chs='.$widhtHeight.'x'.$widhtHeight.'&cht=qr&chld='.$EC_level.'|'.$margin.'&chl='.$chl.'" alt="QR code" widhtHeight="'.$size.'" widhtHeight="'.$size.'"/>';
}
2.php類庫PHP QR Code
PHP QR Code is open source (LGPL) library for generating QR Code,
2-dimensional barcode. Based on libqrencode C library,
provides API for creating QR Code barcode images (PNG, JPEG thanks to GD2).
Implemented purely in PHP, with no external dependencies (except GD2 if needed).
使用用例:
<?php
include('./phpqrcode/phpqrcode.php');
// 二維碼數據
$data = 'http://gz。altmi。com';
// 生成的文件名
$filename = $errorCorrectionLevel.'|'.$matrixPointSize.'.png';
// 糾錯級別:L、M、Q、H
$errorCorrectionLevel = 'L';
// 點的大小:1到10
$matrixPointSize = 4;
QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);
官方給出的用例:
<?php
# include這兩個文件之一:
/*
qrlib.php for full version (also you have to provide all library files
form package plus cache dir)
OR phpqrcode.php for merged version (only one file,
but slower and less accurate code because disabled cache
and quicker masking configured)
*/
# 兩句話解釋:
# 包含qrlib.php的話需要同其它文件放到一起:文件、文件夾。
# phpqrcode.php是合並後版本,只需要包含這個文件,但生成的圖片速度慢而且不太准確
# 以下給出兩種用法:
# 創建一個二維碼文件
QRcode::png('code data text', 'filename.png');
// creates file
# 生成圖片到浏覽器
QRcode::png('some othertext 1234');
// creates code image and outputs it directly into browser
地址:http://phpqrcode。sourceforge。net/
下載:http://sourceforge。net/projects/phpqrcode/
3.libqrencode
地址:http://fukuchi。org/works/qrencode/index.en.html
php支持請參考:http://hirokawa。netflowers。jp/entry/4900/
4.QRcode Perl CGI & PHP scripts
地址:http://www。swetake。com/qr/qr_cgi.html