时间:2021-07-01 10:21:17 帮助过:3人阅读
位置在:
\lib\private\route\router.php的145行,
例如:
先在上面文件的145行加入一行:
//测试 require_once 'test/routes.php';
然后加入一个test的根目录,然后再在根目录下加入路由文件routes.php,内容如下:
/**
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Test;
$this->create('test_test', 'test/test')
->actionInclude('test/test.php');
最后再加入到test文件夹中一个test.php的文件,内容如下:
/**
* Created by PhpStorm.
* User: sunny
* Date: 2015/9/18
* Time: 16:18
*/
echo "哈哈哈哈";
那么便可以通过地址:http://sunny.ownclouddemo.com/index.php/test/test访问到这个test.php文件,显示如下:
至此就完成了根目录下加入文件夹并能访问的情况。
待继续。。。
以上就介绍了owncloud源码分析9--零散的内容,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。