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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.