File path: dist/twist/Core/Utilities/View.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
processArrayItem
— Find an item within an array of data, return the round status and the return value.
Name | Description |
---|---|
$strKey | n/a |
$arrData | n/a |
[$blReturnArray = false] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strKey = 'foo';
$arrData = array(0 => 'foo', 1 => 'bar');
$blReturnArray = false;
//Call the function processArrayItem with the example vars
Twist::View() -> processArrayItem($strKey, $arrData, $blReturnArray);