$keyval
$keyval : array
List of cached URI segments
URI Class
Parses URIs and determines routing
__construct(\CI_Config $config) : void
Class constructor
\CI_Config | $config |
rsegment(integer $n, mixed $no_result = NULL) : mixed
Fetch URI "routed" Segment
Returns the re-routed URI segment (assuming routing rules are used) based on the index provided. If there is no routing, will return the same result as CI_URI::segment().
integer | $n | Index |
mixed | $no_result | What to return if the segment index is not found |
uri_to_assoc(integer $n = 3, array $default = array()) : array
URI to assoc
Generates an associative array of URI data starting at the supplied segment index. For example, if this is your URI:
example.com/user/search/name/joe/location/UK/gender/male
You can use this method to generate an array with this prototype:
array ( name => joe location => UK gender => male )
integer | $n | Index (default: 3) |
array | $default | Default values |
_uri_to_assoc(integer $n = 3, array $default = array(), string $which = 'segment') : array
Internal URI-to-assoc
Generates a key/value pair from the URI string or re-routed URI string.
integer | $n | Index (default: 3) |
array | $default | Default values |
string | $which | Array name ('segment' or 'rsegment') |
_slash_segment(integer $n, string $where = 'trailing', string $which = 'segment') : string
Internal Slash segment
Fetches an URI Segment and adds a slash to it.
integer | $n | Index |
string | $where | Where to add the slash ('trailing' or 'leading') |
string | $which | Array name ('segment' or 'rsegment') |