CodeIgniter 路徑輔助函數(shù)

2018-07-21 15:43 更新

路徑輔助函數(shù)

路徑輔助函數(shù)文件包含了用于處理服務(wù)端文件路徑的一些函數(shù)。

加載輔助函數(shù)

該輔助函數(shù)通過下面的代碼加載:

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

可用函數(shù)

該輔助函數(shù)有下列可用函數(shù):

set_realpath($path[, $check_existance = FALSE])

參數(shù):

  • $path (string) -- Path
  • $check_existance (bool) -- Whether to check if the path actually exists

返回: An absolute path

返回類型: string

該函數(shù)返回指定路徑在服務(wù)端的絕對路徑(不是符號路徑或相對路徑), 可選的第二個參數(shù)用于指定當(dāng)文件路徑不存在時(shí)是否報(bào)錯。

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'
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號