<?php
    class A {
        static function hello() {
            echo "Hello World\n";
        }
    }
    $y[0] = 'hello';
    A::{$y[0]}();
?>