PageRenderTime 44ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/good/ext/pcre/tests/multiline.php

http://github.com/facebook/hiphop-php
PHP | 9 lines | 8 code | 1 blank | 0 comment | 0 complexity | e32b50a04f3142d923234283fb53026c MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh
  2. <<__EntryPoint>> function main(): void {
  3. var_dump(preg_match_all('/^.{2,3}$/', "aei\nou"));
  4. var_dump(preg_match_all('/^.{2,3}$/', "aei\nou\n"));
  5. var_dump(preg_match_all('/^.{2,3}$/m', "aei\nou"));
  6. var_dump(preg_match_all('/^.{2,3}$/m', "aei\nou\n"));
  7. echo "done\n";
  8. }