Someone
public text v1 · immutable<?php
class Test {
static function RunTransaction($param) {
echo "RunTransaction: $param\n\n";
}
}
$executor = 'Test::RunTransaction';
echo "is_callable: ".((int)is_callable($executor))."\n";
$executor("whatever");
echo "exiting.\n\n";
?>