php-src/ext/standard/tests/strings/bug26817.phpt
Steph Fox 87fac43ac0 - killed off UEXPECT
- html_translation_table and setlocale tests are no longer relevant
- there are a number of ANSI-encoded files. Is this deliberate?
2008-05-27 10:50:48 +00:00

27 lines
449 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--
unicode(27) "foo=lala&bar=meuh&test=test"
unicode(9) "test=test"