string.inc.php 311 B

123456789101112131415161718
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Include specialized String handling for phpMyAdmin
  5. *
  6. * @package PhpMyAdmin-String
  7. */
  8. if (! defined('PHPMYADMIN')) {
  9. exit;
  10. }
  11. /**
  12. * Include the string handling class
  13. */
  14. require_once 'libraries/String.class.php';
  15. $PMA_String = new PMA_String();
  16. ?>