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.
如何要求PHPTAL.php我添加到我的构建路径(PHP 包含路径文件夹)?
PHPTAL.php
它可以使用绝对路径或相对路径。
如果该文件位于您的以下文件夹之一中include_path:
include_path
require('PHPTAL.php');
否则,只需指定文件的相对或绝对路径(如果您使用相对路径,它必须相对于最初由 HTTP 请求调用的 PHP 脚本的路径):
require('/path/to/PHPTAL.php');