8 lines
74 B
PHP
8 lines
74 B
PHP
|
<?php
|
||
|
|
||
|
class A {
|
||
|
function b() {
|
||
|
$a instanceof static;
|
||
|
}
|
||
|
}
|