TwistPHP Documentation

processDataWhere

File path: dist/twist/Core/Models/Database/ProtocolJSON.model.php
Namespace: Twist\Core\Models\Database
Extends:

processDataWhereProcess each row to see if it matches the where requirements

Parameters

Name Type Description
$strTablestringn/a
$arrDataRowarrayn/a
$arrWherearrayn/a

Return Values

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

Example

<?php
//Set the variables for the example
$strTable 'foo';
$arrDataRow = array(=> 'foo'=> 'bar');
$arrWhere = array(=> 'foo'=> 'bar');

//Call the function processDataWhere with the example vars
$resProtocolJSON = new \Twist\Core\Models\Database\ProtocolJSON();
$resProtocolJSON -> processDataWhere($strTable$arrDataRow$arrWhere);