Some thoughts caused by php in_array function_PHP tutorial
Today it suddenly occurred to me that the in_array function in PHP has a strange usage. Let's take a look at this usage for a brief reference by friends in need.
代码如下 | 复制代码 |
$a=array("1,2,3","4"); if(in_array(1,$a)){ echo "条件成立"; } |
This condition is indeed true. According to my thinking logic, the above condition is only true when the value of parameter 1 is "1, 2, 3" and the sum is 4, but the strange thing is that it is true. Battlefield then tested the following scenarios:
代码如下 | 复制代码 |
$a=array("a,2,3","4"); if(in_array('a',$a)){ echo "条件不成立"; } |
This is not true. In the first test case, if parameter 1 is written as '1', the condition is also not true. Battlefield concluded:
In PHP, if the first parameter is a number - an unquoted number, and the second array parameter contains a string starting with that number, it does not matter whether the first parameter is the complete second parameter. elements, all return true values. In other words, the in_array function does not match the entire element according to my thinking logic every time, or do I not understand the data type clearly enough?
At the same time, Battlefield also discovered that if the first element of your array is 0, problems will also occur. See the following situation
The code is as follows | Copy code | ||||
if(in_array('mc6',$a)) { echo "====="; } |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
