国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

45 lines
1.6KB

  1. <?php
  2. if (!defined('DEDEINC')) exit('dedebiz');
  3. /*
  4. * PHP QR Code encoder
  5. *
  6. * Root library file, prepares environment and includes dependencies
  7. *
  8. * Based on libqrencode C library distributed under LGPL 2.1
  9. * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi <fukuchi@megaui.net>
  10. *
  11. * PHP QR Code is distributed under LGPL 3
  12. * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>
  13. *
  14. * This library is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU Lesser General Public
  16. * License as published by the Free Software Foundation; either
  17. * version 3 of the License, or any later version.
  18. *
  19. * This library is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * Lesser General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Lesser General Public
  25. * License along with this library; if not, write to the Free Software
  26. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  27. */
  28. $QR_BASEDIR = dirname(__FILE__).DIRECTORY_SEPARATOR;
  29. //Required libs
  30. include $QR_BASEDIR."qrconst.php";
  31. include $QR_BASEDIR."qrconfig.php";
  32. include $QR_BASEDIR."qrtools.php";
  33. include $QR_BASEDIR."qrspec.php";
  34. include $QR_BASEDIR."qrimage.php";
  35. include $QR_BASEDIR."qrinput.php";
  36. include $QR_BASEDIR."qrbitstream.php";
  37. include $QR_BASEDIR."qrsplit.php";
  38. include $QR_BASEDIR."qrrscode.php";
  39. include $QR_BASEDIR."qrmask.php";
  40. include $QR_BASEDIR."qrencode.php";