关于建立了include.php文件后反而读不出相应文件的问题
老师我想请教下,我才看到验证码部分,感觉有些问题没搞懂。我在用include文件包含后却显示不出相应的验证码图片
,其相应代码是这样的
include.php:
header("content-type:text/html;charset=utf-8");
date_default_timezone_set("PRC");
session_start();
define("ROOT",dirname(__FILE__));
set_include_path(".".PATH_SEPARATOR.ROOT."/libs".PATH_SEPARATOR.ROOT."/core".PATH_SEPARATOR.ROOT."/configs".PATH_SEPARATOR.get_include_path());
require_once 'image.func.php';
getverify.php:
require_once'../include.php';
verifyImage();
但是如果我直接在getverify.php中直接用这个路径
require_once'../libs/image.func.php';
verifyImage();
就是可以显示的了
我想请问下这事我在include文件里哪里没有弄对还是怎么嘛?
我相应的文件位置如下
getverify.PHP:
C:\wamp\www\shopImooc\admin
include.php
C:\wamp\www\shopImooc
谢谢老师了!