php类获取静态变量值以及调用

<?php
class Test{
    public static $static_var = 20;
}
echo  Test::$static_var;exit;