XBRL for PHP - Manual

XML::changeProperties

(PHP 5)

- Change the name of the XML element etc.

Description

public XML::changeProperties ( array $names )

* The variable is changed. ('/xbrlphp/xml/XML.php')

public $ATTR = "_attributes:";
public $CAT = "_category:";
public $LIST = "_file:list";
public $NS = "_namespace:";
public $VAL = "_value:";

Parameters

$names
Change the name of the XML element etc.

Examples

$names = array(
	"ATTR" => "_attr:",
	"NS" => "_name_space",
	"VAL" => "_val:"
);

require_once("/xbrlphp/xml/XML.php");
$xml = new XML();
$xml->changeProperties($names);

XBRL for PHP - Manual

XBRL for PHP