Require

require &lt;/ 0&gt;语句动态地包含和执行指定的PHP文件。 请注意,Zend Engine将Zephir包含的文件解释为普通的PHP文件。 <code>require does not allow Zephir code to include other Zephir files at runtime.

  1. if file_exists(path) {
  2. require path;
  3. }