search
HomeBackend DevelopmentPHP ProblemWhat are the common methods in php arrays
What are the common methods in php arraysNov 09, 2020 pm 02:26 PM
phparraymethod

Commonly used methods in php arrays are: 1. is_array; 2. in_array; 3. array_key_exists; 4. array_search; 5. array_keys.

What are the common methods in php arrays

Commonly used array methods:

(Learning video recommendation: java video tutorial)

1 , is_array — Check whether a variable is an array

Syntax:

bool is_array ( mixed $var ) //如果 var 是 array,则返回 TRUE,否则返回 FALSE。

Usage:

	    $arr = [];
            $arr1 = 99;
            var_dump(is_array($arr));    //输出 bool(true)
            var_dump(is_array($arr1));    //输出 bool(false)
        类似的方法:
            1)、is_int — 检测变量是否是整数
                bool is_int ( mixed $var )        //如果 var 是 integer 则返回 TRUE,否则返回 FALSE。
                is_integer — is_int() 的别名
            2)、is_numeric — 检测变量是否为数字或数字字符串
                bool is_numeric ( mixed $var )    //如果 var 是数字和数字字符串则返回 TRUE,否则返回 FALSE。
                Note:若想测试一个变量是否是数字或数字字符串(如表单输入,它们通常为字符串),必须使用 is_numeric()。
            3)、is_bool — 检测变量是否是布尔型
                bool is_bool ( mixed $var )        //如果 var 是 boolean 则返回 TRUE。
            4)、is_float — 检测变量是否是浮点型
                bool is_float ( mixed $var )    //如果 var 是 float 则返回 TRUE,否则返回 FALSE。
                is_real — is_float() 的别名            
            5)、is_string — 检测变量是否是字符串
                bool is_string ( mixed $var )    //如果 var 是 string 则返回 TRUE,否则返回 FALSE。
            6)、is_object — 检测变量是否是一个对象
                bool is_object ( mixed $var )    //如果 var 是一个 object 则返回 TRUE,否则返回 FALSE。

2, in_array — Check whether a value exists in the array

Syntax:

bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] ) //大海捞针,在大海(haystack)中搜索针( needle),如果没有设置 strict 则使用宽松的比较。

Parameters:

needle The value to be searched. (If needle is a string, the comparison is case-sensitive.)

haystack The array to search.

strict If the value of the third parameter strict is TRUE, the in_array() function will also check whether the type of needle is the same as that in haystack.

Return value:

If needle is found, TRUE is returned, otherwise FALSE is returned.

Example:

    //区分大小写
    $fruits = [ "Apple", "Pear", "Bana", "Orange" ];
    if (in_array("Apple", $fruits)) {
        echo "Apple ";
    }
    if (in_array("apple", $fruits)) {
        echo "apple ";
    }
    //开启严格检查
    $number = [ 13, 14, 15, 16 ];
    if (in_array("13", $number, true)) {
        echo "string 13";
    }
    if (in_array(13, $number, true)) {
        echo "int 13";
    }
返回:Apple int 13

3. array_key_exists - Check whether there is a specified key name or index in the array

Syntax:

bool array_key_exists ( mixed $key , array $array ) // 数组里有键 key 时,array_key_exists() 返回 TRUE。 key 可以是任何能作为数组索引的值。

Parameter description:
key The key to be checked

array An array containing the key to be checked

Return value: TRUE on success, or FALSE on failure.

Example:

   $array = [ 1,2,3,4 ];
   var_dump(array_key_exists(0, $array));    //输出 bool(true)

4, array_search - Search for a given value in the array, if successful, return the first corresponding key name,

Syntax:

mixed array_search ( mixed $needle , array $haystack [, bool $strict = false ] ) //大海捞针,在大海(haystack)中搜索针( needle 参数)。

Parameter description:
needle search value. (If needle is a string, the comparison is case-sensitive. )

haystack this array.

strict If the optional third argument strict is TRUE, array_search() will check for identical elements in the haystack.

This means that the type of needle in haystack is also strictly compared, and the objects must be the same instance.

Return value:

If needle is found, return its key, otherwise return FALSE.

If needle appears more than once in haystack, return the first matching key. To return all keys that match a value, array_keys() with the optional argument search_value should be used instead.

Example:

 $array = array(0 => 'blue', 1 => 'red', 2 => 'green', 3 => 'red');
   $key = array_search('green', $array); // $key = 2;
   $key = array_search('red', $array);   // $key = 1;

5, array_keys - Return some or all key names in the array

Syntax:

array array_keys ( array $array [, mixed $search_value = null [, bool $strict = false ]] )

If optional parameters are specified search_value, only the key name of the value is returned. Otherwise all keys in the input array will be returned.

Parameter description:

input An array containing the keys to be returned.

search_value If this parameter is specified, only keys containing these values ​​will be returned.

strict Determines whether strict comparison (===) should be used when searching.

Return value: Return all keys in input.

Example:

        $array = array(0 => 100, "color" => "red");
       print_r(array_keys($array));

       $array = array("blue", "red", "green", "blue", "blue");
       print_r(array_keys($array, "blue"));

       $array = array("color" => array("blue", "red", "green"),
                      "size"  => array("small", "medium", "large"));
       print_r(array_keys($array));
   返回:
       Array
       (
           [0] => 0
           [1] => color
       )
       Array
       (
           [0] => 0
           [1] => 3
           [2] => 4
       )
       Array
       (
           [0] => color
           [1] => size
       )

Related recommendations: php training

The above is the detailed content of What are the common methods in php arrays. For more information, please follow other related articles on the PHP Chinese website!

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”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

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

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

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

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怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

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

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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

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.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!