search
HomeBackend DevelopmentPHP Tutorial[Happy 100 days of learning PHP] Day two: Crazy array_PHP tutorial

Link to the previous issue: Happy 100 days of learning PHP, the first day

This issue’s motto:
Why do some people always feel that when learning PHP, they learn some knowledge points very well and others but never learn it? It is because the facial muscles are too tense when learning, which leads to necrosis of nerve endings, so they are lame.
Knowledge point in this issue: php array
Arrays are the most iconic tool function of PHP. If you learn PHP arrays well, you will basically have the initial capital to get involved in the PHP world.
I once had a friend who opened a computer company. Generally, the main business of computer companies is to sell computers, and occasionally provide some spare parts. Of course, depending on the situation, some companies also sell some CDs, such as movies, games, etc. My friend who is more technical is also a grassroots programmer, and he despises the act of selling CDs, especially CDs from island countries. For a long time in the early days, his main business was helping some companies or enterprises to build websites. Promotional websites at that time were not as complicated as they are now. They basically only had 2-3 pages. Dynamic websites would have no more than 10 interfaces. What’s more, there was a lot of free space at the time, so it was easy for him to earn hundreds of dollars at that time. , very agile and efficient. I once "stole" his website code. I can't remember all of it. I can only give a rough outline of it. You can take a look at it. PHP:
[php] view plaincopy
$var=file("./product list.txt");//It was better to use txt than access at that time
if(!$var || is_array($var) || count($var)==0) exit("The system is busy, please try again later");
$fix=array("China's largest XXX website", "Only our products are authentic", "Fake ones and fined ten for fakes will never cheat people", "Where can I buy such good XXX? Don't hesitate anymore "");
?>
<?php echo $fix[0]?>
//Note that 800*600 was the national standard at that time, don’t think too much


?

....This is a mess of fake Godly sentences...
....Here are advertisements interspersed by similar websites that support each other, such as: "Stir up the tiger in you" or "My legs and feet are healed after using XXX, but I can't afford it." It’s night” and so on.
echo '
  • '.$eachline.'
  • ';
    //The title of the product is very sensational, which means if you don’t buy it, you will regret your trip to this world.
    ?>
    ........Note that this is already the end of the page... //Note that the filing was really not strict at that time
                                                                         
    //Note that my friend did not know how to script at the time, so the page had to be refreshed once before the current time would change.
    Okay, the above is a basic skill that my friend relies on to survive. It is said that for a customer of the same type, he only needs to change the content of "Product List.txt" and then replace the background image of td, and the page will immediately get a new look. My friend told me very seriously at that time that he had achieved "productization" ” development model. I admire it so much because when I first learned ASP, it was definitely not so "configurable".
    Don’t be too entangled with the advertisements and statements in the webpage. Anyway, as a novice, I saw this webpage and wanted to spend money to give it a try, but my friend told me that I was not ready to use it yet. I asked "when can it be used", and my friend "slapped" me.
    Next, let’s get to the point and explain the above knowledge points.
    1. The most basic form of expression of array
    $fix=array("Content1","Content2","Content3"); This is the most basic way of expressing PHP arrays. Please forgive me for not typing the ad again, it's too disgusting.
    You can accumulate as much content as you want, as long as you can write it. When you want to call the content inside, you just need to start counting from "0", such as $fix[0], $fix[1]...$fix[n].
    Note: Why start from 0. One is because "php boss" designed it this way, and the other is because the true form of this most basic array is
    $fix=array(0=>"Content1",1=>"Content2",2=>"Content3");
    The symbol "=>" is omitted. The left side of this symbol is the key and the right side is the value. Generally, many textbooks will explain it as "$key=>$value". Don't worry about why the left side is $key. The right side is $value. I tell you that it is a customary way of writing. You have to write it as $ss=>$bb, which means that the one on the left is the key and the one on the right is the value.
    So: any form of array will have keys and values. Whether you omit it or not is up to you. Regardless of whether you omit it or not, I did it anyway.
    Expand a bit: Since there is a key value, you can change the key value.
    For example $fix=array("Exaggerated website name" => "China's largest XXX website", "Bullshit product brand" => "Only we are the most authentic", "I feel like vomiting after hearing this Advertising slogan"=>"One false penalty and ten penalty will never deceive people");
    If you want to output the "bullshit product brand" to the page at this time, you cannot use echo $fix[1]; because the key value has been changed by you.
    You should use echo $fix['Bullshit product brand'];
    2. Traverse the array
    Continue to use $fix=array("Content1", "Content2", "Content3"); as an example
    1. Using foreach is the most suitable and suitable method for looping small arrays.
    The basic syntax is: foreach (here is the original array as here is the variable set each time it is traversed)
    For example: foreach($var as $eachline) echo $eachline; will output content 1...content 3;
    2. Many people know that there is actually a while that can traverse an array
    The basic syntax is: while(list($key,$value)=each($attr))
    For example: while(list($key,$value)=each($fix)) echo $key.$value; will output 0 content 1. in sequence. . . . 2 Content 2;
    The difference between these two types of traversal will not be discussed too deeply here. It will be discussed later. I will only tell you now that if you just want to traverse data, then use foreach at any time. If you want to change the value of the array while iterating, use while. There is only one word for the reason, for "fast". Nowadays, the pace of life is too fast, and the first principle of writing programs is "fast".
    As for other syntaxes for traversing arrays, I personally think there is no need to learn them, unless you are going to take the exam. If it is actual combat, these two are enough, and we also want to be fast.
    To expand, the values ​​in the array can not only contain strings, but also arrays or any form of variable values.
    For example, $fix=array("Bullshit advertising slogans"=>array("The first 100 people who order will get another 200 yuan gift package", "Proficient in a certain language in 20 days", "Children don't eat because of lack of food" X"));
    For such an array, the value of $fix['Bullshit advertising words'] is actually an array,
    For example, echo $fix['Bullshit advertising slogan'][1]; will output "Master a language in 20 days"
    3. Assignment of arrays
    Let’s give an example:
    $fix=array(); This array is empty.
    $fix[]="Content 1"; This is equivalent to $fix=array("Content 1"); or $fix=array(0=>"Content 1");
    $fix[]="Content2"; This is equivalent to $fix=array("Content1","Content2"); or $fix=array(0=>"Content1",1= >"Content 2");
    $fix['What are we learning']='php'; This is equivalent to $fix=array(0=>"Content 1","What are we learning"=>"php");
    The above assignments are all assigned at the end of the array. In fact, there is also the array_push function that can assign values. The syntax is $fix=array_push($fix,"Content1","Content2"); The effect is the same, except array_push You can add multiple values ​​at once, one at a time using '[]'.
    PHP array functions are very powerful. You can do almost anything you want to do, such as sorting, merging, reversing, deleting, etc. of arrays. You can search on Baidu. Due to space issues, I won’t go into details here. I’ll just use the functions back and forth. , not difficult. However, when it comes to actual projects, a lot of data processing needs to be done through database stored procedures, optimized table structures, good data sorting algorithms, and skilled data reading methods. In actual practice, many array functions in PHP are basically For example, if you receive a project like 1230X and want to list and sort the names of all Chinese people, do you dare to use a php array to traverse, merge, and reverse? Of course, if your customers are for the Vatican or Iceland, you can do this.
    However, there are many functions such as is_array--whether it is an array, in_array---whether a certain value exists, array_key_exists---whether a certain key value exists in the array, etc. Common functions must be learned. If you can't learn it, then you are not far away from becoming a leader.
    Easter egg:
    There is $var=file("./product list.txt"); above, which means that the text document is read at one time and read into an array line by line, including line breaks.

    www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477566.htmlTechArticle Previous issue link: Happy 100 days of learning PHP, the first day. This issue’s motto: Why do some people always feel good when learning PHP? I learned some knowledge points very well, but I still couldn't learn them. That's because my face was on my face when I was learning...
    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
    如何在技嘉主板上设置键盘启动功能 (技嘉主板启用键盘开机方式)如何在技嘉主板上设置键盘启动功能 (技嘉主板启用键盘开机方式)Dec 31, 2023 pm 05:15 PM

    技嘉的主板怎么设置键盘开机首先,要支持键盘开机,一定是PS2键盘!!设置步骤如下:第一步:开机按Del或者F2进入bios,到bios的Advanced(高级)模式普通主板默认进入主板的EZ(简易)模式,需要按F7切换到高级模式,ROG系列主板默认进入bios的高级模式(我们用简体中文来示范)第二步:选择到——【高级】——【高级电源管理(APM)】第三步:找到选项【由PS2键盘唤醒】第四步:这个选项默认是Disabled(关闭)的,下拉之后可以看到三种不同的设置选择,分别是按【空格键】开机、按组

    CS玩家的首选:推荐的电脑配置CS玩家的首选:推荐的电脑配置Jan 02, 2024 pm 04:26 PM

    1.处理器在选择电脑配置时,处理器是至关重要的组件之一。对于玩CS这样的游戏来说,处理器的性能直接影响游戏的流畅度和反应速度。推荐选择IntelCorei5或i7系列的处理器,因为它们具有强大的多核处理能力和高频率,可以轻松应对CS的高要求。2.显卡显卡是游戏性能的重要因素之一。对于射击游戏如CS而言,显卡的性能直接影响游戏画面的清晰度和流畅度。建议选择NVIDIAGeForceGTX系列或AMDRadeonRX系列的显卡,它们具备出色的图形处理能力和高帧率输出,能够提供更好的游戏体验3.内存电

    广联达软件电脑配置推荐;广联达软件对电脑的配置要求广联达软件电脑配置推荐;广联达软件对电脑的配置要求Jan 01, 2024 pm 12:52 PM

    广联达软件是一家专注于建筑信息化领域的软件公司,其产品被广泛应用于建筑设计、施工、运营等各个环节。由于广联达软件功能复杂、数据量大,对电脑的配置要求较高。本文将从多个方面详细阐述广联达软件的电脑配置推荐,以帮助读者选择适合的电脑配置处理器广联达软件在进行建筑设计、模拟等操作时,需要进行大量的数据计算和处理,因此对处理器的要求较高。推荐选择多核心、高主频的处理器,如英特尔i7系列或AMDRyzen系列。这些处理器具有较强的计算能力和多线程处理能力,能够更好地满足广联达软件的需求。内存内存是影响计算

    主板上的数字音频输出接口-SPDIF OUT主板上的数字音频输出接口-SPDIF OUTJan 14, 2024 pm 04:42 PM

    主板上SPDIFOUT连接线序最近我遇到了一个问题,就是关于电线的接线顺序。我上网查了一下,有些资料说1、2、4对应的是out、+5V、接地;而另一些资料则说1、2、4对应的是out、接地、+5V。最好的办法是查看你的主板说明书,如果找不到说明书,你可以使用万用表进行测量。首先找到接地,然后就可以确定其他的接线顺序了。主板vdg怎么接线连接主板的VDG接线时,您需要将VGA连接线的一端插入显示器的VGA接口,另一端插入电脑的显卡VGA接口。请注意,不要将其插入主板的VGA接口。完成连接后,您可以

    php 怎么求2个数组相同的元素php 怎么求2个数组相同的元素Dec 23, 2022 am 10:04 AM

    php求2个数组相同元素的方法:1、创建一个php示例文件;2、定义两个有相同元素的数组;3、使用“array_intersect($array1,$array2)”或“array_intersect_assoc()”方法获取两个数组相同元素即可。

    神舟炫龙m7e8s3如何启用独立显卡直连?神舟炫龙m7e8s3如何启用独立显卡直连?Jan 04, 2024 am 09:24 AM

    神舟炫龙m7独显直连怎么开要开启神舟炫龙m7的独立显卡直连功能,您可以按照以下步骤进行操作:1.首先,确保您已经安装好了独立显卡的驱动程序。您可以前往神舟官方网站或独立显卡厂商官网下载并安装适合您显卡型号的最新驱动程序。2.在电脑桌面上,右键单击空白处,在弹出的菜单中选择“NVIDIA控制面板”(如果是AMD显卡,则选择“AMDRadeon设置”)。3.在控制面板中,找到“3D设置”或类似命名的选项,点击进入。4.在“3D设置”中,您需要找到“全局设置”或类似命名的选项。在这里,您可以指定使用独

    c++数组怎么初始化c++数组怎么初始化Oct 15, 2021 pm 02:09 PM

    c++初始化数组的方法:1、先定义数组再给数组赋值,语法“数据类型 数组名[length];数组名[下标]=值;”;2、定义数组时初始化数组,语法“数据类型 数组名[length]=[值列表]”。

    javascript怎么给数组中增加元素javascript怎么给数组中增加元素Nov 04, 2021 pm 12:07 PM

    增加元素的方法:1、使用unshift()函数在数组开头插入元素;2、使用push()函数在数组末尾插入元素;3、使用concat()函数在数组末尾插入元素;4、使用splice()函数根据数组下标,在任意位置添加元素。

    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

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Dreamweaver Mac version

    Dreamweaver Mac version

    Visual web development tools

    MantisBT

    MantisBT

    Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)