summaryrefslogtreecommitdiff
path: root/ext/ereg/tests/004.phpt
blob: 3e535c6a9de40b4aad869ac9a33528c8a12fa86e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
simple ereg test
--FILE--
<?php $a="This is a nice and simple string";
  if (ereg(".*nice and simple.*",$a)) {
    echo "ok\n";
  }
  if (!ereg(".*doesn't exist.*",$a)) {
    echo "ok\n";
  }
?>
--EXPECT--
ok
ok