food_server/ThinkPHP/Library/Vendor/Person/Student.class.php
2024-05-30 19:16:59 +08:00

14 lines
243 B
PHP

<?php
/*
* @Author: 田老师 4021673@qq.com
* @Date: 2022-05-25 17:10:13
* @LastEditTime: 2022-05-25 17:10:37
* @Description: Do not edit
*/
namespace Org\Person;
class Student{
public function sayHello(){
echo "hello world";
}
}
?>