Using $this when not in object context 错误原因及解决办法
![]() | ![]() | ![]() | ![]() |
| 【性价之王】 | 【线路之王】 | 【价格之王】 | 【配置之王】 |
| 【免费之王】 | 【香港首推】 | 【梯子之王】 | 【独服之王】 |

在 php 中出现 Using $this when not in object context 的原因是在静态方法中使用$this 或者直接调用非静态的方法。
错误代码 1:
//thinkphp 模型类 class StudentCharge extends Model { public static function getCharges($id) { $charges = $this->where('major_id',$student->major_id)->select(); return $charges; } } //调用 $charges = StudentCharge::getCharges($student->id);以上代码就会报 Using $this when not in object context 错误。
解决办法 1:在静态方法中使用 self::来代替$this->,将上面代码的第 5 行修改为下面内容即可。
$charges = self::where('major_id',$student->major_id)->select();解决办法 2:实例化类后再调用该方法,将上面的调用代码修改为下面方式即可。
$sc = new StudentCharge; $charges = $sc->getCharges($student->id);猜你可能想看的VPS
- HostDare→$39 年 KVM-756MB 35GB 600GB 全球[VPS测评]
- racknerd→“老板生日促销+送红包” $15.88 年 KVM 1全球[VPS测评]
- DedeTag Engine Create File False 错误 全球[VPS测评]
- 一颗红心上面有一个患字是什么成语?全球[VPS测评]
- VirMach→便宜美国 VPS 补货 洛杉矶 西雅图节点可选 35 元美国VPS[主机]
- 设置 select 某一项不可选 禁用 select 指定 option全球[VPS测评]
- hostsailor-荷兰+罗马尼亚 VPS 年付$12 256G 流量全球[VPS测评]
- 劳动节促销 Hosteons→美国不限流量 VPS 八折优惠 OVZ 架美国VPS[主机]
- 双十下 ZJI→充值 1000 元送 150 元 香港云地服务器 65 站群服务器[IP]
- Buyvm→$2 月 512MB 内存 10GB SSD 空间 不限流量虚拟空间(主机)
- 一个击字一个声字是什么成语?全球[VPS测评]
- 大盘鸡 $45 年 756M 内存 150G 硬盘 0.6T 流量 1G全球[VPS测评]
- apache:configuration error: couldn't全球[VPS测评]
- 阿里云 - 轻量应用服务器香港新加坡多机房可选 最低 24 元 月香港VPS[主机]
- Evolution Host→€5 月 1GB 内存 20GB SSD 虚拟空间(主机)
- WordPress主题:昼夜双版Panda Pro 主题 慎买,更新太慢全球[VPS测评]
- Virmach 2019春季促销-512M 10G ssd 500G年付全球[VPS测评]
- 什么是VPS?国内VPS有哪些?全球[VPS测评]
- 中国跨境电商,如何掘金欧洲市场?全球[VPS测评]
- 性价比最高的VPS网络评测全球[VPS测评]
- 向日葵-漏洞科普:海外云服务器三种漏洞修复方法快收藏起来!全球[VPS测评]
- wikihost,微基主机:1核/1G/15G/100Mbps/香港vp香港VPS[主机]
- 云服务器都是有哪些特点?全球[VPS测评]
- 老六云怎么样?香港cn2vps月付23元香港NTT月付9.9元香港VPS[主机]
- 阿里云香港服务器多少钱一年?香港云服务器租用年付价格表香港VPS[主机]
- 香港站群服务器租用推荐,香港多IP服务器/VPS套餐(站群需求)站群服务器[IP]
- 亿速云“双11”上云狂欢大促 高防云服务器、裸金属服务器优惠套餐全球[VPS测评]
- 云计算到底是谁发明的?全球[VPS测评]
- KVMCloud:1核/512M/40G硬盘/无限流量/美国/香港BGP美国VPS[主机]
- tudcloud,香港vps终身八折$7.76/月起,1核1G内存,香港香港VPS[主机]
转载请注明原文地址:http://140.238.13.167:12355/read-217144.html











