>  기사  >  백엔드 개발  >  利用PHP生成二维码_PHP教程

利用PHP生成二维码_PHP教程

WBOY
WBOY원래의
2016-07-13 10:39:061303검색

导读:在二维码广泛应用化的今天,在web站点中自动生成对应的二维码是最基础的需求。文章介绍了使用PHP自动生成二维码的三种方式。




get方法实现方式一:

 

$urlToEncode="163.com";  

generateQRfromGoogle($urlToEncode);  

function generateQRfromGoogle($chl,$widhtHeight ='150',$EC_level='L',$margin='0')  {  

     $url = urlencode($url);  

     return  'QR code';  

}  

 

post方法实现方式:

$width = 300;  

$height = 300;  

$string = "163.com";  

function qrcode($width,$height,$string)  

{  

    $post_data = array();  

    $post_data['cht'] = 'qr';  

    $post_data['chs'] = $width."x".$height;  

    $post_data['chl'] = $string;  

    $post_data['choe'] = "UTF-8";  

    $url = "http://chart.apis.google.com/chart";  

    $data_Array = array();  

    foreach($post_data as $key => $value)  

    {  

        $data_Array[] = $key.'='.$value;  

    }  

    $data = implode("&",$data_Array);  

    //echo $data;  

    $ch = curl_init();  

    curl_setopt($ch, CURLOPT_POST, 1);  

    curl_setopt($ch, CURLOPT_HEADER, 0);  

    curl_setopt($ch, CURLOPT_URL, $url);      

    curl_setopt($ch, CURLOPT_POSTFIELDS,$data);  

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  

    $result = curl_exec($ch);  

    

    //echo "利用PHP生成二维码_PHP教程"; 注意,不写header的写法  

  

     return $result;  

}  

  

header("Content-type:image/png");  

echo qrcode($width,$height,$string);  

 

2.利用php类库PHP QR Code来实现

首先下载类库包 

地址:http://phpqrcode.sourceforge.net/

下载:http://sourceforge.net/projects/phpqrcode/

  • API文档

  • 详细的例子 

 

 

include "./phpqrcode/phpqrcode.php";  

$value="http://www.weste.net";  

$errorCorrectionLevel = "L";  

$matrixPointSize = "4";  

QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);  

exit;  

?>  

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/735051.htmlTechArticle导读:在二维码广泛应用化的今天,在web站点中自动生成对应的二维码是最基础的需求。文章介绍了使用PHP自动生成二维码的三种方式。...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.