返回介绍

路径辅助函数

发布于 2019-10-31 06:05:19 字数 1575 浏览 1133 评论 0 收藏 0

路径辅助函数文件包含了用于处理服务端文件路径的一些函数。

  • 加载辅助函数
  • 可用函数

加载辅助函数

该辅助函数通过下面的代码加载:

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

可用函数

该辅助函数有下列可用函数:

set_realpath($path[, $check_existance = FALSE])
参数:
  • $path (string) -- Path
  • $check_existance (bool) -- Whether to check if the path actually exists
返回:

An absolute path

返回类型:

string

该函数返回指定路径在服务端的绝对路径(不是符号路径或相对路径), 可选的第二个参数用于指定当文件路径不存在时是否报错。

Examples:

$file = '/etc/php5/apache2/php.ini';
echo set_realpath($file); // Prints '/etc/php5/apache2/php.ini'

$non_existent_file = '/path/to/non-exist-file.txt';
echo set_realpath($non_existent_file, TRUE);    // Shows an error, as the path cannot be resolved
echo set_realpath($non_existent_file, FALSE);   // Prints '/path/to/non-exist-file.txt'

$directory = '/etc/php5';
echo set_realpath($directory);  // Prints '/etc/php5/'

$non_existent_directory = '/path/to/nowhere';
echo set_realpath($non_existent_directory, TRUE);   // Shows an error, as the path cannot be resolved
echo set_realpath($non_existent_directory, FALSE);  // Prints '/path/to/nowhere'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文