Heim >Backend-Entwicklung >PHP-Tutorial >透过 PHP类库 phpqrcode 生成 二维码

透过 PHP类库 phpqrcode 生成 二维码

WBOY
WBOYOriginal
2016-06-13 10:55:56668Durchsuche

通过 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;?>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn