“Ciąg zawiera PHP” Kod odpowiedzi

PHP Sprawdź, czy ciąg zawiera słowo

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Grepper

Ciąg PHP zawiera

$string = 'The lazy fox jumped over the fence';

if (str_contains($string, 'lazy')) {
    echo "The string 'lazy' was found in the string\n";
}

TomatenTim

php, jeśli ciąg zawiera

$a = 'How are you?';

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

Ciąg zawiera PHP

$a = 'How are you?';

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

php, jeśli ciąg zawiera

if (str_contains('How are you', 'are')) { 
    echo 'true';
}
nanaseous

str_includes php

<?php
$string = 'The lazy fox jumped over the fence';

if (str_contains($string, '')) {
    echo "Checking the existence of an empty string will always return true";
}

if (str_contains($string, 'lazy')) {
    echo "The string 'lazy' was found in the string\n";
}

if (str_contains($string, 'Lazy')) {
    echo 'The string "Lazy" was found in the string';
} else {
    echo '"Lazy" was not found because the case does not match';
}

# Checking the existence of the empty string will always return true
# The string 'lazy' was found in the string
# "Lazy" was not found because the case does not match
RedGuy12

Odpowiedzi podobne do “Ciąg zawiera PHP”

Pytania podobne do “Ciąg zawiera PHP”

Więcej pokrewnych odpowiedzi na “Ciąg zawiera PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu