“найти в строке PHP или” Ответ

найти в строке PHP или

$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Indian Gooner

Strpos в PHP


<?php
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

// Note our use of ===.  Simply == would not work as expected
// because the position of 'a' was the 0th (first) character.
if ($pos === false) {
    echo "The string '$findme' was not found in the string '$mystring'";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo " and exists at position $pos";
}
?>

Kaotik

PHP иглы сено

//Find the position of the first occurrence of a substring in a string
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Cannibal Capybara

Ответы похожие на “найти в строке PHP или”

Вопросы похожие на “найти в строке PHP или”

Больше похожих ответов на “найти в строке PHP или” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования