Answers for "find index of string in array php"

PHP
10

get index of element in array php

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

$key = array_search('green', $array); // $key = 2;
$key = array_search('red', $array);   // $key = 1;
Posted by: Guest on September-24-2020
0

php get index of string

strpos ( string $haystack , string $needle , int $offset = 0 ) : int|false
Code language: PHP (php)
Posted by: Guest on January-15-2022

Code answers related to "find index of string in array php"

Browse Popular Code Answers by Language