|
CI_Router类中,set_directory方法:
PHP复制代码
/**
* Set the directory name
*
* @access public
* @param string
* @return void
*/
function set_directory ($dir)
{
$this->directory = str_replace(array('/', '.'), '', $dir).'/';
}
复制代码
对$dir进行了过滤(替换),这样做的目的是什么?出于安全考虑吗?
|
|