我一直在寻找PHP中是否存在类似于静态初始化器的东西。下面是一个作为Java示例的静态方法: static { //This is what I mean (Does this exist in otherlanguages like PHP?//THIS IN PHP}
我找到了它的名字(静态初始化程序)。它是类首次加载时使用的。在PHP</
当在PhpStorm中使用php docblock自动生成时,我在一个静态方法上使用了@static注释: * Reset the singleton instance, for the testsonly */ self::$singletonInstance = null;如果可以从代码中推断出这些标记