树:
--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(): Failed opening required './mailer/class.phpmailer.php' (include_path='.;C:\php\pear') in C:\wamp\www\myproject\class.php on line 3
我也试过,include_once但同样的错误!
慕尼黑的夜晚无繁华
MMTTMM
PIPIONE