mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
a31f46421d
RFC: https://wiki.php.net/rfc/tostring_exceptions And convert some object to string conversion related recoverable fatal errors into Error exceptions. Improve exception safety of internal code performing string conversions.
136 lines
3.1 KiB
PHP
136 lines
3.1 KiB
PHP
--TEST--
|
|
Test exceptions thrown from __toString() in various contexts
|
|
--FILE--
|
|
<?php
|
|
|
|
class BadStr {
|
|
public function __toString() {
|
|
throw new Exception("Exception");
|
|
}
|
|
}
|
|
|
|
$str = "a";
|
|
$num = 42;
|
|
$badStr = new BadStr;
|
|
|
|
try { $x = $str . $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = $badStr . $str; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = $str .= $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump($str);
|
|
try { $x = $num . $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = $badStr . $num; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = $num .= $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump($num);
|
|
|
|
try { $x = $badStr .= $str; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump($badStr);
|
|
try { $x = $badStr .= $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump($badStr);
|
|
|
|
try { $x = "x$badStr"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = "{$badStr}x"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = "$str$badStr"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = "$badStr$str"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
try { $x = "x$badStr$str"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = "x$str$badStr"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = "{$str}x$badStr"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
try { $x = "{$badStr}x$str"; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
try { $x = (string) $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
try { $x = include $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
try { echo $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
${""} = 42;
|
|
try { unset(${$badStr}); }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump(${""});
|
|
|
|
unset(${""});
|
|
try { $x = ${$badStr}; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
try { $x = isset(${$badStr}); }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
|
|
$obj = new stdClass;
|
|
try { $x = $obj->{$badStr} = $str; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump($obj);
|
|
|
|
try { $str[0] = $badStr; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump($str);
|
|
|
|
$obj = new DateInterval('P1D');
|
|
try { $x = $obj->{$badStr} = $str; }
|
|
catch (Exception $e) { echo $e->getMessage(), "\n"; }
|
|
var_dump(!isset($obj->{""}));
|
|
|
|
try { strlen($badStr); } catch (Exception $e) { echo "Exception\n"; }
|
|
try { substr($badStr, 0); } catch (Exception $e) { echo "Exception\n"; }
|
|
try { new ArrayObject([], 0, $badStr); } catch (Exception $e) { echo "Exception\n"; }
|
|
|
|
?>
|
|
--EXPECT--
|
|
Exception
|
|
Exception
|
|
Exception
|
|
string(1) "a"
|
|
Exception
|
|
Exception
|
|
Exception
|
|
int(42)
|
|
Exception
|
|
object(BadStr)#1 (0) {
|
|
}
|
|
Exception
|
|
object(BadStr)#1 (0) {
|
|
}
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
Exception
|
|
int(42)
|
|
Exception
|
|
Exception
|
|
Exception
|
|
object(stdClass)#2 (0) {
|
|
}
|
|
Exception
|
|
string(1) "a"
|
|
Exception
|
|
bool(true)
|
|
Exception
|
|
Exception
|
|
Exception
|