心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年12月24日
  7. * 二维码生成
  8. */
  9. // 绘制二维码图片
  10. function draw_qcode($string)
  11. {
  12. require dirname(__FILE__) . '/extend/qrcode/phpqrcode.php'; // 引入类文件
  13. QRcode::png($string, false, 'M', 6, 1); // 生成二维码图片
  14. }
  15. if (isset($_GET['string']) && $string = $_GET['string']) {
  16. draw_qcode($string);
  17. } else {
  18. die('地址必须传入string参数!');
  19. }