树:
--myproject
----mailer
-------class.phpmailer.php
----test
-------index.php
----site.php
----class.php
----db.php
----index.php
index.php:(两者)
<?php
require_once '../site.php';
?>
网站.php:
<?php
require_once "class.php";
?>
类.php
<?php
require_once 'db.php';
require_once('./mailer/class.phpmailer.php');
?>
当我访问测试时,它显示:
警告:require_once(./mailer/class.phpmailer.php):无法打开流:第 3 行的 C:\wamp\www\myproject\class.php 中没有这样的文件或目录
致命错误:require_once():在 C:\wamp\www\myproject\class.php 中打开所需的 './mailer/class.phpmailer.php' (include_path='.;C:\php\pear') 失败3
我也试过include_once
但同样的错误!