File path: dist/twist/Core/Utilities/XML.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
covertArray
— Turn an array of data into XML
Name | Description |
---|---|
$arrItems | n/a |
[$strTab = ""] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$arrItems = array(0 => 'foo', 1 => 'bar');
$strTab = "";
//Call the function covertArray with the example vars
Twist::XML() -> covertArray($arrItems, $strTab);