TwistPHP Documentation

processEachItem

File path: dist/twist/Core/Utilities/XML.utility.php
Namespace: Twist\Core\Utilities
Extends: Base

processEachItemRecursively go through the array and process each item

Parameters

Name Type Description
$arrDataarrayn/a
[$strTab = "]stringn/a
[$strPreviousKey = ""]stringn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$arrData = array(=> 'foo'=> 'bar');
$strTab ";
$strPreviousKey = "";

//Call the function processEachItem with the example vars
Twist::XML() -> processEachItem($arrData$strTab$strPreviousKey);