qrcode.php 728 B

12345678910111213141516171819202122
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Ceeen Wise System
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2007-2017 http://www.sharpwe.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Date: 2017/7/28 Time: 2:02
  8. // +----------------------------------------------------------------------
  9. // | Author: fely <fely@fely.cc>
  10. // +----------------------------------------------------------------------
  11. error_reporting(E_ALL || ~E_NOTICE);
  12. include('../extend/util/phpqrcode/qrlib.php');
  13. if (!array_key_exists('code', $_GET)) {
  14. exit();
  15. }
  16. $code = $_GET['code'];
  17. QRcode::png($code);