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
280 B

3 years ago
  1. <?php
  2. //声明一个枚举类型
  3. enum COLSS
  4. {
  5. case Mon;
  6. case Tues;
  7. case Wed;
  8. case Thurs;
  9. case Fri;
  10. case Sat;
  11. case Sun;
  12. }
  13. function func(COLSS $days):void
  14. {
  15. echo "today".$days.PHP_EOL;
  16. }
  17. ?>