TwistPHP Documentation

processArrayItem

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

processArrayItemFind an item within an array of data, return the round status and the return value.

Parameters

Name Type Description
$strKeystringn/a
$arrDataarrayn/a
[$blReturnArray = false]booleann/a

Return Values

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

Example

<?php
//Set the variables for the example
$strKey 'foo';
$arrData = array(=> 'foo'=> 'bar');
$blReturnArray false;

//Call the function processArrayItem with the example vars
Twist::View() -> processArrayItem($strKey$arrData$blReturnArray);