Function __global->min

Definitions

sources_custom/phpstub.php

  • Find lowest value between arguments.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
...$args mixed No Yes required parameter N/A N/A ...$args Arguments (if array, then each treated as a separate parameter)

Returns

  • The lowest valued argument
  • Type: mixed
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Find lowest value between arguments.
 *
 * @param  mixed $args ...$args Arguments (if array, then each treated as a separate parameter)
 * @return mixed The lowest valued argument
 */

function min(...$args)