-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On September 12, 2002 09:47, Magnus Solvang wrote:
> I'm used to the unless-statement in perl... How do I do this:
>
>   if string A or B are NOT in string C, then do something and quit.
>
> In perl, I would do this:
>
> unless ($c =~ /$a|$b/) {
>   blabla
>   exit 0
> }

  ... and in the more verbose PHP you could say

  if( ! preg_match("/$a|$b/", $c) ) {
    blah blah blah
    exit(0);
  }

  Cheers!
  --zak
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9gSNrb6QONwsK8bIRAnIiAKCPcmTiSO+7G4dwt9pQ0LyXnd/o7wCgiIiX
YRogR4f45nZLdGioazfwvAo=
=PxCf
-----END PGP SIGNATURE-----


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to