方法1,使用google开放api
<?php /* 二维码 */ $urlToEncode="http://www.jb200.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
类库下载:http://sourceforge.net/projects/phpqrcode/
类库中的index.php为演示例子。
下面是自己写的一个例子。
<?php /* 生成二维码 */ include('./phpqrcode.php'); // 二维码数据 $data = 'http://www.jb200.com.com'; // 纠错级别:L、M、Q、H $errorCorrectionLevel = 'L'; // 点的大小:1到10 $matrixPointSize = 4; // 生成的文件名 $path = "erwei/"; if (!file_exists($path)){ mkdir($path); } $filename = $path.$errorCorrectionLevel.'.'.$matrixPointSize.'.png'; QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2); echo "<img src='$filename' />"; ?>