CodeIgniter 用户指南 版本 2.2.6

编辑文档、查看近期更改请 登录注册  找回密码
查看原文

路径辅助函数

路径辅助函可以让您使用服务器端的文件路径来工作。

载入辅助函数

使用如下代码来载入路径辅助函数:

$this->load->helper('path');

可用函数:

set_realpath()

检查路径是否有效。此函数会返回一个没有符号连接的服务器路径或相对目录结构,函数中的第二个参数为TRUE时,如果程序无法确定指定的路径,则会触发一个错误。

$directory = '/etc/passwd';
echo set_realpath($directory);
// returns "/etc/passwd"

$non_existent_directory = '/path/to/nowhere';
echo set_realpath($non_existent_directory, TRUE);
// returns an error, as the path could not be resolved

echo set_realpath($non_existent_directory, FALSE);
// returns "/path/to/nowhere"

 

 

翻译贡献者: Hex, shishirui
最后修改: 2009-02-21 18:26:01