Function __global->array_values

Definitions

sources_custom/phpstub.php

  • Return all the values of an array.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: array

Parameters

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

Returns

  • Output array
  • Type: array
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Return all the values of an array.
 *
 * @param  array $array Input array
 * @return array Output array
 */

function array_values(array $array) : array