Skip to content

Instantly share code, notes, and snippets.

@diwms
Created August 7, 2019 13:28
Show Gist options
  • Select an option

  • Save diwms/eae6106e409856b79a968cc268abad7a to your computer and use it in GitHub Desktop.

Select an option

Save diwms/eae6106e409856b79a968cc268abad7a to your computer and use it in GitHub Desktop.
Read private properties in PHP without reflection
<?php
function inspect($object, $property) {
return (function () use ($property) {
return $this->$property;
})->call($object);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment