Skip to content

Instantly share code, notes, and snippets.

@kuredev
Created November 18, 2017 10:19
Show Gist options
  • Select an option

  • Save kuredev/a57ba52684f0a3726c1049a987b0d1b5 to your computer and use it in GitHub Desktop.

Select an option

Save kuredev/a57ba52684f0a3726c1049a987b0d1b5 to your computer and use it in GitHub Desktop.
__get(マジックメソッド)の小さなメモ
<?php
class Test{
public function __get($name)
{
echo $name.PHP_EOL;
}
}
$test = new Test();
$test->hogehoge;
@kuredev

kuredev commented Nov 18, 2017

Copy link
Copy Markdown
Author

実行結果

hogehoge

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment