Answers for "php str"

PHP
65

php strpos

$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}
Posted by: Guest on August-06-2019
1

php stristr

stristr ( string $haystack , mixed $needle [, bool $before_needle = FALSE ] ) : string
Posted by: Guest on April-09-2020
0

php string

<?php 
$x = "Hello world!";
$y = 'Hello world!';

echo $x;
echo "<br>"; 
echo $y;
?>
Posted by: Guest on October-02-2021

Browse Popular Code Answers by Language