PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
psStrContainsi()
Returns true if a string contains a substring


Description:

This is used to know if a string contains a substring.

psStrContains() Case sensitive
psStrContainsi() Case insensitive



Usage:

$var = psStrContains($needle,$haystack);



Example:

if ( psStrContains("apple", "grape, apple") == true )
{
print "Found";
}





Code:

function psStrContains($needle,$haystack)
{
$res = false;
if (substr_count($haystack,$needle) > 0) { $res = true; }
return $res;
}

function psStrContainsi($needle,$haystack)
{
$res = false;
if (substr_count(strtolower($haystack),strtolower($needle)) > 0) { $res = true; }
return $res;
}


Changlelog:


See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site