欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析

程序员文章站 2024-02-14 10:55:28
本文实例讲述了ci框架uri.php中_fetch_uri_string()函数用法。分享给大家供大家参考,具体如下: apppath/config/config.php...

本文实例讲述了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程序设计有所帮助。