Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Załaduj komponent Zend Framework w istniejącym projekcie

Skończyło się na skopiowaniu folderu Zend z potrzebnymi komponentami do folderu o nazwie Library i w ten sposób na przykład tworzę instancję Autoloadera.

/* Define site root */
defined('DOCUMENT_ROOT') ? null : define('DOCUMENT_ROOT',realpath(dirname(__FILE__)));
defined('SITE_ROOT') ? null : define('SITE_ROOT',realpath(dirname(DOCUMENT_ROOT).'\mysite'));


$includePath[] = DOCUMENT_ROOT.'.';
$includePath[] = SITE_ROOT . '\Library';
$includePath[] = get_include_path();
$includePath = implode(PATH_SEPARATOR,$includePath);
set_include_path($includePath);

//Including Zend LoaderClass
require_once('Library/Zend/Loader/Autoloader.php');

//Loading the auto loader file.( Including the autoloader.php file)
$autoloader = Zend_Loader_Autoloader::getInstance();



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Porównanie dat MySQL w PHP

  2. Czy LIMIT OFFSET, DŁUGOŚĆ wymaga ORDER BY do paginacji?

  3. Wyświetlasz linki w PHP/MySQL?

  4. Liczba wstawionych i zaktualizowanych rekordów MYSQL

  5. Policz wystąpienia znaku w ciągu za pomocą MySQL