PHP 8.5.0 Alpha 1 available for testing

stristr

(PHP 4, PHP 5, PHP 7, PHP 8)

stristrVersión insensible a mayúsculas y minúsculas de strstr()

Descripción

stristr(string $haystack, string $needle, bool $before_needle = false): string|false

Devuelve una subcadena de haystack, desde la primera ocurrencia de needle (incluida) hasta el final de la cadena.

Parámetros

haystack

La cadena en la que se debe buscar.

needle

La cadena a buscar.

Si needle no es una cadena, se convierte a un entero y se aplica como el valor ordinal de un carácter. Este comportamiento está obsoleto a partir de PHP 7.3.0, por lo que su uso está totalmente desaconsejado. Dependiendo del comportamiento previsto, needle deberá ser convertido explícitamente a string, o realizar una llamada explícita a chr().

before_needle

Si es true, stristr() devuelve la parte de haystack antes de la primera ocurrencia de needle (needle excluida).

needle y haystack se tratan sin tener en cuenta mayúsculas y minúsculas.

Valores devueltos

Devuelve la parte correspondiente de la cadena. Si needle no se encuentra, la función devuelve false.

Historial de cambios

Versión Descripción
8.2.0 Case folding no longer depends on the locale set with setlocale(). Only ASCII case folding will be done. Non-ASCII bytes will be compared by their byte value.
8.0.0 needle now accepts an empty string.
8.0.0 Pasar un entier como needle ya no está soportado.
7.3.0 Pasar un entier como before_needle se ha marcado como obsoleto.

Ejemplos

Ejemplo #1 Ejemplo con stristr()

<?php
$email
= '[email protected]';
echo
stristr($email, 'e'), PHP_EOL; // muestra [email protected]
echo stristr($email, 'e', true), PHP_EOL; // muestra US
?>

Ejemplo #2 Comprueba si una cadena es encontrada o no

<?php
$string
= 'Hello World!';
if (
stristr($string, 'earth') === FALSE) {
echo
'"terre" no encontrado en la cadena';
}
// muestra: "terre" no encontrado en la cadena
?>

Notas

Nota: Esta función es segura binariamente.

Ver también

  • strstr() - Encuentra la primera ocurrencia en un string
  • strrchr() - Encuentra la última ocurrencia de un carácter en un string
  • stripos() - Busca la posición de la primera ocurrencia en un string, sin distinguir mayúsculas de minúsculas
  • strpbrk() - Busca un conjunto de caracteres en un string
  • preg_match() - Realiza una búsqueda de coincidencia con una expresión regular estándar

add a note

User Contributed Notes 5 notes

up
17
dpatton.at.confluence.org
22 years ago
There was a change in PHP 4.2.3 that can cause a warning message
to be generated when using stristr(), even though no message was
generated in older versions of PHP.

The following will generate a warning message in 4.0.6 and 4.2.3:
stristr("haystack", "");
OR
$needle = ""; stristr("haystack", $needle);

This will _not_ generate an "Empty Delimiter" warning message in
4.0.6, but _will_ in 4.2.3:
unset($needle); stristr("haystack", $needle);

Here's a URL that documents what was changed:
http://groups.google.ca/groups?selm=cvshholzgra1031224321%40cvsserver
up
7
giz at gbdesign dot net
17 years ago
Just been caught out by stristr trying to converting the needle from an Int to an ASCII value.

Got round this by casting the value to a string.

<?php
if( !stristr( $file, (string) $myCustomer->getCustomerID() ) ) {
// Permission denied
}
?>
up
3
Techdeck at Techdeck dot org
22 years ago
An example for the stristr() function:

<?php
$a
= "I like php";
if (
stristr("$a", "LikE PhP")) {
print (
"According to \$a, you like PHP.");
}
?>

It will look in $a for "like php" (NOT case sensetive. though, strstr() is case-sensetive).

For the ones of you who uses linux.. It is similiar to the "grep" command.
Actually.. "grep -i".
up
0
notepad at codewalkers dot com
20 years ago
<?php

function stristr_reverse($haystack, $needle) {
$pos = stripos($haystack, $needle) + strlen($needle);
return
substr($haystack, 0, $pos);
}
$email = '[email protected]';
echo
stristr_reverse($email, 'er');
// outputs USER

?>
up
-3
jukka
11 years ago
I think there is a bug in php 5.3 in stristr with uppercase Ä containing other character

http://pastebin.com/5bP6uztY

if you search only with täry it works, but as soon as the word is tärylä it does not. TÄRYL works fine
To Top