Skip to content

Adding bug 63463 test #230

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions tests/classes/bug63463.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
--TEST--
Verifies that ReflectionProperty does not cause magic methods to get called when properties are unset
--FILE--
<?php

class Test
{
public $publicProperty;
protected $protectedProperty;
private $privateProperty;

public function __construct() {
unset(
$this->publicProperty,
$this->protectedProperty,
$this->privateProperty
);
}

function __get($name) {
echo 'called __get ' . $name;
}

function __set($name, $value) {
echo 'called __set ' . $name . ' ' . $value;
}
}

$t = new Test();

foreach (array('publicProperty', 'protectedProperty', 'privateProperty') as $propertyName) {
$prop = new ReflectionProperty('Test', $propertyName);
$prop->setAccessible(true);
echo var_export($prop->getValue($t), true) . "\n";
$prop->setValue($t, 'value');
}

?>
--EXPECTF--
NULL
NULL
NULL