Answers for "chek if therer is part of a strin in another string php"

PHP
5

how to check if a string contains a substring in php

$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Posted by: Guest on October-18-2020
0

Check if a String Contains a Substring in PHP

phpCopy<?php
$mystring = "This is a PHP program.";

if (strpos($mystring, "program.") !== false) {
    echo("True");
}
?>
Posted by: Guest on April-23-2021

Code answers related to "chek if therer is part of a strin in another string php"

Browse Popular Code Answers by Language