10-10 4,707 views
<?php
    require './phpqrcode/phpqrcode.php';
    set_time_limit(0);
        $value = '123'; //二维码内容   
        $errorCorrectionLevel = 'L';//容错级别   
        $matrixPointSize = 20;//生成图片大小   
        //生成二维码图片   
        QRcode::png($value,'/1.png',$errorCorrectionLevel, $matrixPointSize, 1);
</code>
<a href="http://www.koukousky.com/wp-content/uploads/2015/10/phpqrcode.zip">phpqrcode下载</a>
		
		
    
		
		
		
		
		
		
		
		
		
	
很不错的二维码工具! 😛