mb_strpos_error2.phpt 921 B

12345678910111213141516171819202122232425262728293031323334
  1. --TEST--
  2. Test mb_strpos() function : error conditions - Pass unknown encoding
  3. --SKIPIF--
  4. <?php
  5. extension_loaded('mbstring') or die('skip');
  6. function_exists('mb_strpos') or die("skip mb_strpos() is not available in this build");
  7. ?>
  8. --FILE--
  9. <?php
  10. /* Prototype : int mb_strpos(string $haystack, string $needle [, int $offset [, string $encoding]])
  11. * Description: Find position of first occurrence of a string within another
  12. * Source code: ext/mbstring/mbstring.c
  13. */
  14. /*
  15. * Pass an unknown encoding to mb_strpos() to test behaviour
  16. */
  17. echo "*** Testing mb_strpos() : error conditions ***\n";
  18. $haystack = 'Hello, world';
  19. $needle = 'world';
  20. $offset = 2;
  21. $encoding = 'unknown-encoding';
  22. var_dump( mb_strpos($haystack, $needle, $offset, $encoding) );
  23. echo "Done";
  24. ?>
  25. --EXPECTF--
  26. *** Testing mb_strpos() : error conditions ***
  27. Warning: mb_strpos(): Unknown encoding "unknown-encoding" in %s on line %d
  28. bool(false)
  29. Done