mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00

This implements a reduced variant of #1226 with just the following change: -Fatal error: Uncaught exception 'EngineException' with message 'Call to private method foo::bar() from context ''' in %s:%d +Fatal error: Uncaught EngineException: Call to private method foo::bar() from context '' in %s:%d The '' wrapper around messages is very weird if the exception message itself contains ''. Futhermore having the message wrapped in '' doesn't work for the "and defined" suffix of TypeExceptions.
21 lines
519 B
PHP
21 lines
519 B
PHP
--TEST--
|
|
CURL file uploading
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("curl")) {
|
|
exit("skip curl extension not loaded");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$data = 'a:2:{s:4:"file";O:8:"CURLFile":3:{s:4:"name";s:13:"testdata1.txt";s:4:"mime";s:0:"";s:8:"postname";s:0:"";}s:4:"data";s:3:"foo";}';
|
|
var_dump(unserialize($data));
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Exception: Unserialization of CURLFile instances is not allowed in %s
|
|
Stack trace:
|
|
#0 [internal function]: CURLFile->__wakeup()
|
|
#1 %s
|
|
#2 {main}
|
|
thrown in %s on line %d
|
|
|