You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
257 B

3 years ago
  1. <?php
  2. namespace a;
  3. const const_a=1; //常量a
  4. function func_a()
  5. {
  6. echo __FUNCTION__,"\n";
  7. }
  8. class cls_a
  9. {
  10. static function func()
  11. {
  12. echo __CLASS__.'-'.__FUNCTION__.'\n';
  13. }
  14. }
  15. ?>