码迷,mamicode.com
首页 > Web开发 > 详细

php 制作二维码 phpqrcode.php

时间:2017-10-20 19:59:52      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:https   log   include   points   for   logs   style   head   type   

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

标签:https   log   include   points   for   logs   style   head   type   

原文地址:http://www.cnblogs.com/fan-bk/p/7701105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!