今天用wamp运行一个PHP项目,要修改这个项目,但是一直报错

本身这个项目是没问题的,我是从IIS上面直接复制下来的
( ! ) Warning: include(templates//index.php): failed to open stream: No such file or directory in D:\wamp\www\union\index.php on line 15
Call Stack
Warning: include(): Failed opening 'templates//index.php' for inclusion (include_path='.;c:\php\includes') in D:\wamp\www\union\index.php on line 15
我是新学PHP的,这个问题已经困扰好久了,哪位大神能帮我看看,最好能说的详细点

打开目录失败,这种错误一般是由于include的文件不存在造成的,或路经写错导致的include失败,for inclusion后面的意思是指php搜索include_path 也没有到找到文件
php的include在引入文件时会先从你指定的地址读取,如果读取不到会搜索include_path目录.
解决方法:
检查一下你的include路经是否正确.如果不知道该如何修改,可以把项目放到网址根目录试试追问

文件是确实存在的,路径应该是不会错的,因为项目现在还在别的服务器上面运行,至于说include_path怎么改,我不知道,网上搜的答案都不适合..

温馨提示:答案为网友推荐,仅供参考
第1个回答  2016-06-30
include 路径不对。
相似回答