View Full Version : Testing to see if one string is contained in another
CyberRanger
03-30-2004, 02:20 AM
This seems so simple but I can't figure out the syntax -
In my php script, I have the variables $animal and $shelter set.
Let's say animal = 'black cat' and shelter = 'brown dog, black cat, pig'
In my vbulletin template I want to do a test to see if $animal contains a phrase that is in $shelter.
I have:
<if condition="$shelter == $animal">
This is stuff only a black cat member will see...
</if>
How can I modify the above code to be CONTAINS instead of IS?
filburt1
03-30-2004, 02:25 AM
Ideally you want to use arrays, but given that PHP is hardly an ideal language:
if (strpos($haystack, $needle) !== false)
See http://www.php.net/strpos for details. If you happen to have PHP5, use stripos (http://www.php.net/stripos).
CyberRanger
03-30-2004, 11:33 AM
Failed:
$checkladder = strpos('$onladder', '$ladder');
I'd being trying strpos without success. Ends up my problem was I forgot to double quote the variables ... arghhh....
Worked:
$checkladder = strpos("$onladder", "$ladder");
thanks!
Boofo
03-30-2004, 11:43 AM
I'm curious here. What are you doing with this code? I mean, is it a hack? ;)
Velocd
03-30-2004, 05:36 PM
I think his examples are just that, examples. People often provide the simplest example of their problem in order to get the point across. He probably doesn't intend to create some kind of farm-animal hack. :\
Boofo
03-30-2004, 05:48 PM
LOL No, I meant how would you use something like that in a hack or somewhere else?
Velocd
03-30-2004, 06:54 PM
Ah. ;)
Well, strpos and stripos (case insensitive) are good for finding a substring withing a string.
www.php.net/strpos
It could be used for many things, like.. finding a username inside a post, etc.
For general iteration in a loop, it's best to parse the string into an array (if it's a list) with explode() and then use in_array(), since it's faster.
Boofo
03-30-2004, 06:56 PM
Ok, I'm not quite sure I understand completely but the part about finding a username inside a post makes sense. Just for yucks, how would you set it up to do something like that then? ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.