mirror of
https://github.com/php/php-src.git
synced 2026-04-13 19:14:16 +02:00
14 lines
254 B
PHP
14 lines
254 B
PHP
--TEST--
|
|
Calling mb_convert_case() with an invalid casing mode
|
|
--SKIPIF--
|
|
<?php require 'skipif.inc'; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(mb_convert_case("foobar", 100));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: mb_convert_case(): Invalid case mode in %s on line %d
|
|
bool(false)
|