Function __global->max

Definitions

sources_custom/phpstub.php

  • Find highest 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 highest valued argument
  • Type: mixed
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

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

function max(...$args)