本文實例講述了CI框架URI.php中_fetch_uri_string()函數用法。分享給大家供大家參考,具體如下:
APPPATH/config/config.php中對於url 格式的擬定。
$config['uri_protocol'] = 'AUTO';
這個配置項目定義了你使用哪個服務器全局變量來擬定URL。
默認的設置是auto,會把下列四個方式輪詢一遍。當你的鏈接不能工作的時候,試著用用auto外的選項。
'AUTO' Default - auto detects
'PATH_INFO' Uses the PATH_INFO
'QUERY_STRING' Uses the QUERY_STRING
'REQUEST_URI' Uses the REQUEST_URI
'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
CI_URI中的幾個成員變量
$keyval = array(); //List of cached uri segments $uri_string; //Current uri string $segments //List of uri segments $rsegments = array() //Re-indexed list of uri segments
獲取到的current uri string 賦值到 $uri_string ,通過function _set_uri_string($str)。
獲取到$str有幾個選項,也就是_fetch_uri_string()的業務流程部分了
一、默認
$config['uri_protocol'] = 'AUTO'
時,程序會一次輪詢下列方式來獲取URI
(1)當程序在CLI下運行時,也就是在命令行下php文件時候。ci會這麼獲取URI
private function _parse_cli_args() { $args = array_slice($_SERVER['argv'], 1); return $args ? '/' .implode('/',$args) : ''; }
$_SERVER['argv'] 包含了傳遞給腳本的參數 當腳本運行在CLI時候,會給出c格式的命令行參數
截取到$_SERVER['argv']中除了第一個之外的所有參數
如果你在命令行中這麼操作
php d:\wamp\www\CodeIgniter\index.php\start\index
_parse_cli_args() 返回一個 /index.php/start/index的字符串
(2)默認使用REQUEST_URI來探測url時候會調用 私有函數 _detect_uri()
(3)如果上面的兩種方式都不能獲取到uri那麼會采用$_SERVER['PATH_INFO']來獲取
$path = (isset($_SERVER['PATH_INFO'])) ? $_SERVER['PATH_INFO'] : @getenv('PATH_INFO'); if (trim($path, '/') != '' && $path != "/".SELF) { $this->_set_uri_string($path); return; }
(4)如果上面三種方式都不能獲取到,那麼就使用
$_SERVER['QUERY_STRING']或者getenv['QUERY_STRING']
$path = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : @getenv('QUERY_STRING'); if (trim($path, '/') != '') { $this->_set_uri_string($path); return; }
(5)上面四種方法都不能獲取到URI,那麼就要使用$_GET數組了,沒招了
if (is_array($_GET) && count($_GET) == 1 && trim(key($_GET), '/') != '') { $this->_set_uri_string(key($_GET)); return; }
二、在config.php中設定了:
$config['uri_protocol']
那麼 程序會自動執行相應的操作來獲取uri
更多關於CodeIgniter相關內容感興趣的讀者可查看本站專題:《codeigniter入門教程》、《CI(CodeIgniter)框架進階教程》、《php優秀開發框架總結》、《ThinkPHP入門教程》、《ThinkPHP常用方法總結》、《Zend FrameWork框架入門教程》、《php面向對象程序設計入門教程》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家基於CodeIgniter框架的PHP程序設計有所幫助。