API15

JURI/delVar: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 47: Line 47:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=delVar
  category=delVar
  category=JURI
  category=JURI
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:14, 25 March 2017

Description

Removes an item from the query string variables if it exists

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

delVar($name)
Parameter Name Default Value Description
$name $name Name of variable to remove

Defined in

libraries/joomla/environment/uri.php

Importing

jimport( 'joomla.environment.uri' );

Source Body

function delVar($name)
{
        if (in_array($name, array_keys($this->_vars)))
        {
                unset ($this->_vars[$name]);

                //empty the query
                $this->_query = null;
        }
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples