Function Database_Static_xml->_type_check

Definitions

sources/database/xml.php

  • Type check some data destined to go into a table.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$schema array No No required parameter N/A N/A The schema
$record array No No required parameter N/A N/A The data
$query string No No required parameter N/A N/A Query that was executed

Preview

Code (PHP)

/**
 * Type check some data destined to go into a table.
 *
 * @param  array $schema The schema
 * @param  array $record The data
 * @param  string $query Query that was executed
 */

protected function _type_check(array $schema, array $record, string $query)