mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
29 lines
430 B
PHP
29 lines
430 B
PHP
--TEST--
|
|
Bug #61165 (Segfault - strip_tags())
|
|
--FILE--
|
|
<?php
|
|
|
|
$handler = NULL;
|
|
class T {
|
|
public $_this;
|
|
|
|
public function __toString() {
|
|
global $handler;
|
|
$handler = $this;
|
|
$this->_this = $this; // <-- uncoment this
|
|
return 'A';
|
|
}
|
|
}
|
|
|
|
$t = new T;
|
|
for ($i = 0; $i < 3; $i++) {
|
|
strip_tags($t);
|
|
strip_tags(new T);
|
|
}
|
|
var_dump($handler);
|
|
--EXPECTF--
|
|
object(T)#%d (1) {
|
|
["_this"]=>
|
|
*RECURSION*
|
|
}
|