mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
50 lines
1004 B
PHP
50 lines
1004 B
PHP
--TEST--
|
|
Shift_JIS request
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--INI--
|
|
file_uploads=1
|
|
mbstring.encoding_translation=1
|
|
input_encoding=Shift_JIS
|
|
internal_encoding=UTF-8
|
|
--POST_RAW--
|
|
Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
|
|
-----------------------------20896060251896012921717172737
|
|
Content-Disposition: form-data; name="—\Ž\”\"
|
|
|
|
ƒhƒŒƒ~ƒtƒ@ƒ\
|
|
-----------------------------20896060251896012921717172737
|
|
Content-Disposition: form-data; name="pics"; filename="file1.txt"
|
|
Content-Type: text/plain
|
|
|
|
file1
|
|
|
|
-----------------------------20896060251896012921717172737--
|
|
--FILE--
|
|
<?php
|
|
var_dump($_FILES);
|
|
var_dump($_POST);
|
|
?>
|
|
--EXPECTF--
|
|
array(1) {
|
|
["pics"]=>
|
|
array(6) {
|
|
["name"]=>
|
|
string(9) "file1.txt"
|
|
["full_path"]=>
|
|
string(9) "file1.txt"
|
|
["type"]=>
|
|
string(10) "text/plain"
|
|
["tmp_name"]=>
|
|
string(%d) "%s"
|
|
["error"]=>
|
|
int(0)
|
|
["size"]=>
|
|
int(6)
|
|
}
|
|
}
|
|
array(1) {
|
|
["予蚕能"]=>
|
|
string(18) "ドレミファソ"
|
|
}
|