<?php

$a = (object) ['show' => function () { return 1;}];
$prop = $a->show;
echo $prop();