Jump to content

String Help in PHP


ac0ua

Recommended Posts

Hello,

I have a handycap because I am comming from Visual Basic 6.
I have been working with PHP for about a month now and and having trouble looking for an "instring" function. Not to mention I don't even know how to start making my own funtion for instring.

What i want to do is

$ArrProduct['strProducy'] = george

$strSearch = "geor"

if ($ArrProduct['strProducy'] == instring($strSearch))
{
echo $ArrProduct['strProducy']."found!"
}
else
{
echo $ArrProduct['strProducy']."not found, Sorry"
}

It would also be equalivant to using % in a SQL Query
WHERE strProduct = "%geor%"

Thank you
Link to comment
https://forums.phpfreaks.com/topic/18736-string-help-in-php/
Share on other sites

No offence Crayon, but you may wan't to refrain from using regex when strstr or strpos can do the same job, as it's mucho faster. It even says so in the manual:

[quote=manual]Tip:  Do not use preg_match() if you only want to check if one string is contained in another string. Use strpos() or strstr() instead as they will be faster.[/quote]
Link to comment
https://forums.phpfreaks.com/topic/18736-string-help-in-php/#findComment-80821
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.