Can you use the % character in php code as a wild card as you can in SQL?
Thanks
Wildcard for what? There are many wildcards in regex for PHP...
Diego
I've got a question about wildcards... If you are trying to split something for instance, can you do something like this
$var = split ('[tes*]', $file);
to split test or testing, etc?
http://www.php.net/manual/en/function.preg-split.php 😃