Function __global->_inspect

Definitions

sources/developer_tools.php

  • Output whatever arguments are given for debugging. If possible it'll output with plain text, but if output has already started it will attach messages.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$args array No No required parameter N/A N/A Arguments to output
$force_plain boolean No No False N/A N/A Whether to force text output

Preview

Code (PHP)

/**
 * Output whatever arguments are given for debugging. If possible it'll output with plain text, but if output has already started it will attach messages.
 *
 * @param  array $args Arguments to output
 * @param  boolean $force_plain Whether to force text output
 */

function _inspect(array $args, bool $force_plain = false)