Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the value without key in array in php

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces how to achieve the value of array without key in php, which has a certain reference value, and interested friends can refer to it. I hope you can learn a lot after reading this article.

Value method: 1, use the "array_shift ($arr)" statement to get the value; 2, use the "array_pop ($arr)" statement; 3, use the "current ($arr)" statement; 4, use the "reset ($arr)" statement; 5, use the "end ($arr)" statement.

Operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

Php array has no value of key

Method 1: use array_shift () to get the value of the first element in the array

Output result:

Method 2: use array_pop () to get the value of the last element in the array

Output result:

Method 3: use current () to return the value of the current element of the array

In PHP, each array has an internal pointer to its "current" cell (element), which initially points to the first cell in the current array.

Through the current () function, you can get the value of the internal pointer to the element.

Output result:

The method 4:reset () function gets the value of the first element of the array

The reset () function: you can point the internal pointer in the array to the first element and return the value of that element.

Output result:

The method 5:end () function gets the value of the last element of the array

The end () function: you can point the inner pointer in the array to the last element and return the value of that element.

Output result:

Thank you for reading this article carefully. I hope the article "how to achieve the value of array without key in php" shared by the editor will be helpful to you. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report