|
Posted by ImOk on 06/12/06 03:07
You can also use
// Does string contain xyz?
if ( ($spos=strpos("abcxyz","xyz")) >0 ) {
... do code ...
}
maya wrote:
> hi, am new to PHP, trying to learn strings... I'm a bit mystifed about
> something.. how do you test for conditions in strings? for example,
> how would you do what in JavaScript (or Java) you do like this
>
> if (email.indexOf('@') != -1) { // etc..
>
> also how do you test for length of a string? I tried:
>
> if (strlen($myName) == 7) {
>
> but got error...
>
> I have looked at sections dealing with conditionals in tutorials, but
> don't see examles of this (also don't see functions like indexOf(),
> etc.. under Strings here, http://us2.php.net/manual/en/ref.strings.php..
>
> thank you very much..
[Back to original message]
|