php 制作二维码 phpqrcode.php
Posted 倒霉的大熊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 制作二维码 phpqrcode.php相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章