博客列表 >include和require的区别/实例演示:类与对象关键字 魔术方法

include和require的区别/实例演示:类与对象关键字 魔术方法

P粉191340380
P粉191340380原创
2022年08月20日 22:09:18329浏览

include和require的区别

  1. // include
  2. // 相对路径
  3. include 'inc/hello.php';
  4. // 绝对路径
  5. include __DIR__ . '/inc/hello.php';
  6. echo $username;
  7. // require
  8. // 当路径不存在,代码出错后直接退出
  9. require __DIR__ . 'inc/hello1.php';
  10. echo $username;

类与对象关键字 魔术方法

  1. class Stu{
  2. public $username;
  3. private $age = 18;
  4. static $tel;
  5. public function __construct($username, $age, $tel)
  6. {
  7. $this ->username = $username;
  8. $this ->age = $age;
  9. $this ->tel = $tel;
  10. }
  11. public function __get($age)
  12. {
  13. if($age === 'age'){
  14. return $this ->$age + 5;
  15. }
  16. }
  17. public function __set($age, $value)
  18. {
  19. if($age === 'age'){
  20. if($value >=18 && $value <=30){
  21. $this ->$age =$value;
  22. } else{
  23. echo '你超龄了';
  24. }
  25. }
  26. }
  27. }
  28. $user = new Stu('小李', 19, 13632801080);
  29. echo $user ->age, '<br>';
  30. $user->age = 48;
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议