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
- 五月促销 野草云→自营新购五折 续费四折 香港独立服务器¥350 元起 独立服务器[U]
- 阿里云 618 优惠活动→云服务器低至 2 折仅需 190 元 年起 新全球[VPS测评]
- MySQL 导入数据库提示[Err] 1286 - Unknown st全球[VPS测评]
- 预售 ¥300 季 2G 内存 20G SSD 1T 流量 50Mbps日本VPS[主机]
- OneVPS - 日本新加坡机房 IP 可用保证日本VPS[主机]
- dedecms 如何添加上一篇 下一篇 dedecms 上一篇下一篇标签全球[VPS测评]
- 优惠 腾讯云限时秒杀→1 核 2G 内存云服务器年付 128 元 非常适全球[VPS测评]
- 一个黑色的茶字一个淡淡的饭字是什么成语?全球[VPS测评]
- 活动 嘟牛云→限时免单 全场 77 折优惠 额外双倍内存 66 红包大放全球[VPS测评]
- 优惠促销 $2 月 512M 内存 15G 硬盘 1T 流量 1Gbps全球[VPS测评]
- 限时 5 折 $13.5 年付 1G 内存 不限流量 洛杉矶 hoste全球[VPS测评]
- 搬瓦工又一次关闭免费更换IP服务全球[VPS测评]
- 如何在 CentOS 7 服务器上使用 yum命令安装 PHP7.2全球[VPS测评]
- gcorelabs 伯力和海参崴机房 488m内存/8G硬盘/288G流全球[VPS测评]
- Chrome插件Logo Grabber快速取得网站或品牌Logo全球[VPS测评]
- AntMedia → 6$ 月 2核1G35G硬盘 国内1G不限流量 印全球[VPS测评]
- 咸鱼科技(Saltyfish)德国法兰克福 美国费里蒙CN2 GIA美国VPS[主机]
- Fatal error: Allowed memory size of 全球[VPS测评]
- 什么是IconFont ?iconfont 的使用和解析全球[VPS测评]
- 40火伞高压电爬坡更让企业用电于民全球[VPS测评]
- locvps:香港cn2vps(葵湾机房),2核2G40g硬盘,8折优惠WINDOWS
- 虾皮跨境电商怎么样?虾皮跨境电商靠谱吗?全球[VPS测评]
- 奇异互动,2核4G香港云服务器仅655元/年,注册领550元新手大礼包香港VPS[主机]
- 企鹅小屋:香港ntt vps,大带宽直连,1核/1G/2T流量/半年15香港VPS[主机]
- CentOS 7.x 系统安装和配置redis-7.0.4集群全球[VPS测评]
- Ubuntu关机命令是什么?Ubuntu关机命令介绍全球[VPS测评]
- RFCHost:1核1G洛杉矶vps/15GB空间/1TB流量/KVM/虚拟空间(主机)
- 星辰云:香港/美国/韩国/菲律宾/新加坡cn2云服务器低至20元/月起,韩国VPS[主机]
- 宝塔面板在香港服务器安装启动不了nginx怎么办?香港VPS[主机]
- MineServer:香港CMI云服务器,1核/512MB/10GB空间虚拟空间(主机)
转载请注明原文地址:http://140.238.13.167:12355/read-211180.html











