首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

透过 PHP类库 phpqrcode 生成 二维码

2012-11-05 
通过 PHP类库 phpqrcode 生成 二维码?php//phpqrcode 在下面的附件中提供下载require_once(phpqrcode/ph

通过 PHP类库 phpqrcode 生成 二维码

<?php//phpqrcode 在下面的附件中提供下载require_once("phpqrcode/phpqrcode.php");$str = 'http://soundhorizon.iteye.com';$errorCorrectionLevel = 'L';$matrixPointSize = 3; // 图像像素比例QRcode::png($str, false, $errorCorrectionLevel, $matrixPointSize);exit;?>

热点排行