超简单PHP生成二维码实例
php example
PHP生成二维码的方式有多种,可以利用google开放的API,可以利用php QR Code类库生成,本文着重介绍使用php QR Code类库来生成二维码.
1、代码包下载地址:http://sourceforge.net/projects/phpqrcode/
2、下载下来的压缩包里面有很多示例,可以自行研究,下面给出一个简单的使用案例,代码如下:
include "phpqrcode/phpqrcode.php"; $data='http://www.phprm.com'; $errorCorrectionLevel="L"; $matrixPointSize="4"; QRcode::png($data,false,$errorCorrectionLevel,$matrixPointSize);
Copy after login
官方法实例,代码如下:
<?php // include这两个文件之一: /* qrlib.php for full version (also you have to provide all library files form package plus cache dir) OR phpqrcode.php for merged version (only one file, but slower and less accurate code because disabled cache and quicker masking configured) */ // 两句话解释: // 包含qrlib.php的话需要同其它文件放到一起:文件、文件夹。 // phpqrcode.php是合并后版本,只需要包含这个文件,但生成的图片速度慢而且不太准确 // 以下给出两种用法: // 创建一个二维码文件 QRcode::png('code data text', 'filename.png'); // creates file // 生成图片到浏览器 QRcode::png('some othertext 1234'); // creates code image and outputs it directly into browser ?>
Copy after login
3、有的二维码中间有图片,其实就是把图片拷贝到已经生成的二维码图片上.
利用google生成二维码的开放接口,代码如下:
<?php /** * google api 二维码生成【QRcode可以存储最多4296个字母数字类型的任意文本,具体可以查看二维码数据格式】 * @param string $data 二维码包含的信息,可以是数字、字符、二进制信息、汉字。不能混合数据类型,数据必须经过UTF-8 URL-encoded.如果需要传递的信息超过2K个字节,请使用POST方式 * @param int $widhtHeight 生成二维码的尺寸设置 * @param string $EC_level 可选纠错级别,QR码支持四个等级纠错,用来恢复丢失的、读错的、模糊的、数据。 * L-默认:可以识别已损失的7%的数据 * M-可以识别已损失15%的数据 * Q-可以识别已损失25%的数据 * H-可以识别已损失30%的数据 * @param int $margin 生成的二维码离图片边框的距离 */ function generateQRfromGoogle($data, $widhtHeight = '150', $EC_level = 'L', $margin = '0') { $url = urlencode($data); echo '<img src="/static/imghw/default1.png" data-src="http://chart.apis.google.com/chart?chs=' . $widhtHeight . 'x' . $widhtHeight . '&cht=qr&chld=' . $EC_level . '|' . $margin . '&chl=' . $data . '" class="lazy" widhtHeight="' . $widhtHeight . '" widhtHeight="' . $widhtHeight . '"/ alt="超简单PHP生成二维码实例 " >'; } ?>
Copy after login
调用方法,代码如下:
$data='版权所有:http://www.phprm.com/'; generateQRfromGoogle($data);
Copy after login
本文地址:
转载随意,但请附上文章地址:-)
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article
Repo: How To Revive Teammates
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
3 weeks ago
By DDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
4 weeks ago
By DDD

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
