1. 程式人生 > >php 制作二維碼 phpqrcode.php

php 制作二維碼 phpqrcode.php

header ade correct brush style set html point ext

phpqrcode.php

下載地址:https://sourceforge.net/projects/phpqrcode/

//測試可行 utf-8格式

<?php
header("Content-type: text/html; charset=utf-8");

include ‘phpqrcode.php‘;  //引入phpqrcode.php
//支持中文

$value = "內容";
//$value="http://www.weste.net";
$errorCorrectionLevel = "L";
$matrixPointSize = "4";
QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);
exit;

  

php 制作二維碼 phpqrcode.php