[关闭]
@Chiang 2020-01-16T18:16:26.000000Z 字数 443 阅读 605

array_key_last

PHP-Array


array_key_last — Gets the last key of an array

说明

  1. array_key_last ( array $array ) : mixed

Get the last key of the given array without affecting the internal array pointer.

参数

  • array
    An array.

返回值

Returns the last key of array if the array is not empty; NULL otherwise.

范例

  1. For PHP <= 7.3.0 :
  2. if (! function_exists("array_key_last")) {
  3. function array_key_last($array) {
  4. if (!is_array($array) || empty($array)) {
  5. return NULL;
  6. }
  7. return array_keys($array)[count($array)-1];
  8. }
  9. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注