All pastes #41685 Raw Edit

Someone

public text v1 · immutable
#41685 ·published 2006-02-15 01:16 UTC
rendered paste body
<?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";

?>