File path: dist/twist/Core/Models/Database/ProtocolJSON.model.php
Namespace: Twist\Core\Models\Database
processDataWhere
— Process each row to see if it matches the where requirements
Name | Description |
---|---|
$strTable | n/a |
$arrDataRow | n/a |
$arrWhere | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strTable = 'foo';
$arrDataRow = array(0 => 'foo', 1 => 'bar');
$arrWhere = array(0 => 'foo', 1 => 'bar');
//Call the function processDataWhere with the example vars
$resProtocolJSON = new \Twist\Core\Models\Database\ProtocolJSON();
$resProtocolJSON -> processDataWhere($strTable, $arrDataRow, $arrWhere);