API16

API16:JSimpleXMLElement/removeAttribute

From Joomla! Documentation

Description

Removes an attribute from the element



Syntax

removeAttribute($name)
Parameter Name Default Value Description
$name $name

Defined in

libraries/joomla/utilities/simplexml.php

Importing

jimport( 'joomla.utilities.simplexml' );

Source Body

function removeAttribute($name)
{
        unset($this->_attributes[$name]);
}



Examples

Code Examples