Function __global->array_pop

Definitions

sources_custom/phpstub.php

  • Pop the element off the end of array.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
&$array array Yes No required parameter N/A N/A The array

Returns

  • The value (null: no value)
  • Type: ?mixed
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Pop the element off the end of array.
 *
 * @param  array $array The array
 * @return ?mixed The value (null: no value)
 */

function array_pop(array &$array)