<?php
namespace My\App {
class Api {
public static fetch() {
print __FUNCTION__ . "\n"; // 输出 fetch
print __METHOD__ . "\n"; // 输出 My\App\Api::fetch
}
}
Api::fetch();
}
namespace {
My\App\Api::fetch();
}
?>
__METHOD__ 输出完全限定的方法名;__FUNCTION__ 在方法中使用时,仅输出方法名。