W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
路徑輔助函數(shù)文件包含了用于處理服務(wù)端文件路徑的一些函數(shù)。
該輔助函數(shù)通過下面的代碼加載:
$this->load->helper('path');
該輔助函數(shù)有下列可用函數(shù):
set_realpath($path[, $check_existance = FALSE])
參數(shù):
返回: 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'
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: