Function Tempcode->is_smaller_than

Definitions

sources/tempcode.php

  • Find if this Tempcode object uses less memory (very roughly!) than the given number of bytes.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: bool

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
&$bytes_available integer Yes No required parameter N/A N/A The number of bytes passed by reference

Returns

  • Whether it is
  • Type: boolean
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Find if this Tempcode object uses less memory (very roughly!) than the given number of bytes.
 *
 * @param  integer $bytes_available The number of bytes passed by reference
 * @return boolean Whether it is
 */

public function is_smaller_than(int &$bytes_available) : bool