国内流行的内容管理系统(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.

44 lines
1.5KB

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