Function FirePHP->encodeTable

Definitions

sources/firephp.php

  • Encodes a table by encoding each row and column with encodeObject()
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$table array No No required parameter N/A N/A The table to be encoded

Returns

  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Encodes a table by encoding each row and column with encodeObject()
 *
 * @param  array $table The table to be encoded
 * @return array
 */

protected function encodeTable($table)