<?php class A { static $word = "hello"; static function hello() { print static::$word; } } class B extends A { static $word = "bye"; } B::hello(); ?> Xem đoạn mã lệnh sau đây. Sau khi
3/25
<?php class A {static $word = "hello";static function hello(){print static::$word;}} class B extends A { static $word = "bye"; } B::hello(); ?> Xem đoạn mã lệnh sau đây. Sau khi thực hiện đoạn mã trên kết quả hiển thị sẽ là gì?