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.

19 lines
332 B

  1. <?php
  2. class students
  3. {
  4. var $name;
  5. public $age;
  6. private $sex;
  7. public static $school;
  8. public function Write(string $a, int $b):bool{
  9. }
  10. protected static function Read(string $str):int {
  11. }
  12. function Listen(int $num):bool{
  13. }
  14. }
  15. ?>