1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/standard/tests/strings/bug26817.phpt
2020-02-03 22:52:20 +01:00

27 lines
488 B
PHP

--TEST--
Bug #26817 (http_build_query() did not handle private & protected object properties)
--FILE--
<?php
class test {
protected $foo;
private $bar;
public $test;
function foo()
{
$this->bar = 'meuh';
$this->foo = 'lala';
$this->test = 'test';
var_dump(http_build_query($this));
}
}
$obj = new test();
$obj->foo();
var_dump(http_build_query($obj));
?>
--EXPECT--
string(27) "foo=lala&bar=meuh&test=test"
string(9) "test=test"