ecstore生成二维码

时间:2023-12-13 08:52:08

利用phpqrcode库生成二维码:

         /*
*二维码添加
*/
//////////////////////////////////////
/*引入文件*/
@include(APP_DIR.'/include/lib/weixin/phpqrcode.php');
/*默认存放路径*/
$save_path = PUBLIC_DIR.'/weixin/';//储存地址
if (!file_exists($save_path)) {
mkdir($save_path);
}
$path = $save_path.$deptId.'.png ';
$path = strstr($path, '/');
$errorCorrectionLevel = "H";
$matrixPointSize = "4";
if(!file_exists($path)){
$c = 'www.baidu.com';
QRcode::png($c, $save_path.$deptId.'.png',$errorCorrectionLevel,$matrixPointSize);
}
$this->pagedata['img'] = kernel::base_url(1).'/weixin/'.$deptId.'.png';
///////////////////////////////////////

利用google接口生成二维码:

     /*
* 生成二维码调用google接口
* @var array $params
* @access public
* @return string
*/
function generateQRfromGoogle($data,$widhtHeight='205',$EC_level='H',$margin='0'){ $url=urlencode($data); return '<img src="http://chart.apis.google.com/chart?chs='.$widhtHeight.'x'.$widhtHeight.'&cht=qr&chld='.$EC_level.'|'.$margin.'&chl='.$url.'" widhtHeight="'.$widhtHeight.'" widhtHeight="'.$widhtHeight.'"/>'; }//End Function

还有一种方法:调用jquery.qrcode.js库生成二维码:具体实例就不写了