x
 
<!DOCTYPE html>
<html>
<body>
<?php
class pi {
  public static $value = 3.14159;
}
// 获取静态属性
echo pi::$value;
?>
 
</body>
</html>