我想在此目录中的头文件中包含一个文件:
wp-content/themes/themename/header.php
我用于包含的代码是:
include("../../plugins/booking/informationform.php");
而我要包含的文件位于此目录中:
wp-content/plugins/booking/informationform.php
所以这给了我这样的错误:
警告:包含(../../plugins/booking/informationform.php)[function.include]:无法打开流:/home/zapptv/domains/tvworkshop.com/public_html/wp-中没有这样的文件或目录第 100 行的 content/themes/tvworkshop/header.php
警告:包含(../../plugins/booking/informationform.php)[function.include]:无法打开流:/home/zapptv/domains/tvworkshop.com/public_html/wp-中没有这样的文件或目录第 100 行的 content/themes/tvworkshop/header.php
警告:include() [function.include]:无法在 /home/ 中打开 '../../plugins/booking/informationform.php' 以包含 (include_path='.:/usr/local/lib/php') zapptv/domains/tvworkshop.com/public_html/wp-content/themes/tvworkshop/header.php 在第 100 行
但是当我将文件复制到标题所在的同一目录中并将其包含在文件名中时,它不会给出任何错误并成功包含。