Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有运行良好的 Drupal 7 站点。我在我的站点的根目录中添加了一个自定义 PHP 页面。我想将 Drupal 应用程序功能扩展到该页面,以便我可以访问不同的 Drupal 类并基本上通过我的页面扩展 Drupal。我需要在页面顶部包含哪些内容才能像在 Drupal 站点中一样访问 Drupal 应用程序?
define('DRUPAL_ROOT', getcwd()); require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); // Your code here