15,047
edits
(add text match) |
|||
| Line 84: | Line 84: | ||
== text match == | == text match == | ||
* in_array | * in_array | ||
<pre> | |||
$array = array("AAA", "BBB"); | |||
if(in_array($var, $array){ | |||
//do something | |||
} | |||
</pre> | |||
* preg_match... | * preg_match... | ||
* verbose: | |||
<pre> | |||
if($var =="AAA" OR $var =="BBB"){ | |||
//do something | |||
} | |||
</pre> | |||
== ideas == | == ideas == | ||