<?php
class MyClass
{
static function test()
{
echo "Victor";
}
static function result()
{
echo "My name is ".self::test();
}
}
MyClass::result();
?>
なぜself::test()
コマンドの残りの部分の前に実行されるのか、またはその逆であるのか混乱しています。コメントありがとうございます。