We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dcd8f8 commit 30d89b1Copy full SHA for 30d89b1
ext/mbstring/tests/mb_http_input_001.phpt
@@ -0,0 +1,17 @@
1
+--TEST--
2
+mb_http_input() - Returns FALSE for $type 'L' or 'l'
3
+--EXTENSIONS--
4
+mbstring
5
+--INI--
6
+input_encoding=-1
7
+--FILE--
8
+<?php
9
+var_dump(mb_http_input('L'));
10
+var_dump(mb_http_input('l'));
11
+?>
12
+--EXPECT--
13
+Warning: PHP Startup: INI setting contains invalid encoding "-1" in Unknown on line 0
14
+
15
16
+bool(false)
17
0 commit comments