PageRenderTime 51ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/bad/ext/standard/tests/strings/strings001.php

http://github.com/facebook/hiphop-php
PHP | 6 lines | 5 code | 0 blank | 1 comment | 0 complexity | 245a90b278e6ddc01095c142b014c551 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. <?php
  2. /* Do not change this test it is a README.TESTING example. */
  3. $s = "alabala nica".chr(0)."turska panica";
  4. var_dump(strstr($s, "nic"));
  5. var_dump(strrchr($s," nic"));
  6. ?>