怎样修改php生成的二维码名称
发布网友
发布时间:2024-10-20 12:35
我来回答
共1个回答
热心网友
时间:2024-10-26 04:43
指定调用函数的第二个参数,是文件存储地址。
1
2
3
4
5
public static function png($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4, $saveandprint=false)
{
$enc = QRencode::factory($level, $size, $margin);
return $enc->encodePNG($text, $outfile, $saveandprint=false);
}
如: \QRcode::png($str, $file);