Home >Backend Development >PHP Tutorial > 第一次用THINKPHP 报路径错解决办法

第一次用THINKPHP 报路径错解决办法

WBOY
WBOYOriginal
2016-06-13 13:48:321382browse

第一次用THINKPHP 报路径错
网上抄的一个例子:生成一个index.php,如下:
//定义ThinkPHP框架路径
define('THINK_PATH', '../ThinkPHP');
//定义项目名称和路径
define('APP_NAME', 'myphp');
define('APP_PATH', '.');
//加载框架入口文件
require(THINK_PATH."/ThinkPHP.php");
//实例化一个网站应用实例
App::run();
?>

报错:
Warning: require(../ThinkPHPCommon/runtime.php) [function.require]: failed to open stream: No such file or directory in D:\web\htdocs\ThinkPHP\ThinkPHP.php on line 36

Fatal error: require() [function.require]: Failed opening required '../ThinkPHPCommon/runtime.php' (include_path='.;C:\php5\pear') in D:\web\htdocs\ThinkPHP\ThinkPHP.php on line 36

目录结构是这样的:
myphp/index.php
thinkphp/


请大虾指点下,看是什么问题。



------解决方案--------------------

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn