search
HomeBackend DevelopmentPHP TutorialHow to use PHP array to print subscripts_PHP tutorial
How to use PHP array to print subscripts_PHP tutorialJul 15, 2016 pm 01:28 PM
phpsubscriptintroduceusehowstudyWillPrintarrayhourmeetquestion

When learning PHP arrays, you may encounter many problems. Here we will introduce the solutions to PHP array problems and share them with you here. Start learning php. I have always subjectively believed that programming refers to writing applications in languages ​​​​such as C and C++. I have always stayed away from web pages. But as a system administrator, if the website to be maintained is PHP, it is not enough to solve system problems. In order to solve the needs, you still need to be able to understand some PHP syntax.

So I looked at php "secretly". During the learning process, I discovered that PHP can also write scripts. Isn’t this the best of both worlds? I only learn the scripting part of PHP for system management, so that I can become familiar with PHP syntax and modify some web pages when necessary. I don’t know if I am the first person to use php scripts for system management. Hey, if you can solve the problem, that’s the way to go.

Due to workflow reasons, after a colleague writes something, I need to update it to the server, and then my colleague can check the effect. There is no problem in doing this. But for colleagues, they may always "trouble" me every time they modify something, and they will feel bad about it. As for me, in order to save trouble, I wrote a script for what my colleague asked me to do. When he asked me to update, I connected to the server and executed the script directly.

So I was thinking: How can my colleagues do this directly without going through me? It is unrealistic to open permissions on the server, because the smaller the server management permissions, the better. When the department boss suggested writing a page for colleagues to do it themselves, I said that I already had this idea, but once the process was clear, I wouldn’t write the button to click on the page. The boss said, this is simple, so he divided three by five, each with only one button. After clicking, the page that can output the execution results was written. And this button can be clicked an unlimited number of times. This saves you the trouble of revisiting this page every time. After giving it to my colleagues, guess what? My colleague actually said excitedly: "This little innovation of yours will really benefit all mankind!" Haha, although I didn't say anything, I was actually already happy in my heart. This can be regarded as a small incentive for me to learn PHP as a beginner, come on!

I’ve been talking nonsense for a long time. Actually, I just want to share with you how to print array subscripts in PHP. When I saw PHP's foreach function, I thought it was similar to Perl's foreach, but when I open a file and output it, I hope to print out the label of each line. Perl has many built-in functions. To achieve this function, just use $.. Is it not possible in php? After searching for a long time to no avail, I asked several friends who write PHP and they just said that I need to define a variable in advance and then print the variable. It seemed that there was no other way, so I continued to look at the grammar. When seeing a two-dimensional array. Once I accidentally printed out a one-dimensional array in the same way as a two-dimensional array, and suddenly I discovered this secret that must be told! Look at the picture:

PHP


Needless to say the content, first create a PHP array consisting of ten numbers, and then output the result.

array

See Is there any execution result? Are the array subscripts printed correctly? It seems that PHP is also very powerful, very pornographic and violent. That’s it for today’s sharing. It’s not a dessert, it’s just a heresy at best:)


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446453.htmlTechArticleWhen learning PHP arrays, you may encounter many problems. Here we will introduce the solutions to PHP array problems. Take it out here and share it with everyone. Start learning php. I have always considered it subjectively...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

如何利用GitLab进行项目文档管理如何利用GitLab进行项目文档管理Oct 20, 2023 am 10:40 AM

如何利用GitLab进行项目文档管理一、背景介绍在软件开发过程中,项目文档是非常重要的资料,不仅能够帮助开发团队了解项目的需求和设计,还能提供给测试团队和客户参考。为了方便项目文档的版本控制和团队协作,我们可以利用GitLab来进行项目文档管理。GitLab是一个基于Git的版本控制系统,除了支持代码管理,还可以管理项目文档。二、GitLab环境搭建首先,我

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft