Fatal error: Using $this when not in object context in 解决方法 粗心造成的错误 $this 只存在于下面情况 $obj = new objectTest(); $obj->test(); 这种方法调用时,class中可以使用$this调用类中函数. 假如: objectTest::test(); 这种方法调用时,是不存在$this的,可以用self::来调用类中函数.…
大致意思是 $this 没有上下文,原因是没有对此类进行实例化. 出现此错误的原因是:在FileCommand.php中使用 $this->方法/属性. $this 不是不可以用,而是要看情况用.在实例化的 类中使用 $this是可以的 class Person{ private var $name; private var $sex; public function showName(){ echo $this->name; $this->message(); } public fun…
Fatal error: Cannot use object of type PHPExcel_RichText as array 上传导入Excel的时候会出现此问题,问题的原因是Excel表格中有富文本对象 2个解决思路 一个是在phpexcel获取数据的时候直接给强制转换成字符型 $data[$j][]=(string) $objPHPExcel->getActiveSheet()->getCell("$k$han")->getValue(); 另外一个思路是…
问题现象: 在业务数据库中查询:SELECT a.NAME FROM SYSOBJECTS a WHERE a.NAME LIKE '%2015' AND a.XTYPE='u' 提示:消息 21,级别 21,状态 1,第 1 行 Warning: Fatal error 829 occurred at Jan 7 2016 4:58PM. Note the error and time, and contact your system administrator. 环境信息如下: Wi…
近日在升级wordpress 3.2.1和若干插件的过程中,发现了一个wordpress的错误:Allowed memory size of XXX bytes exhausted Fatal error: Allowed memory size of 25165824 bytes exhausted (tried to allocate 150 bytes) in [Blog root path]/wp-includes/pomo/mo.php on line 206 通过搜索网络和请教牛…
最近在写基于angular4的项目的时候,在build --prod的时候,突然措手不及的蹦出个报错,大致错误如下: 70% building modules 1345/1345 modules 0 active <--- Last few GCs ---> 317945 ms: Mark-sweep 703.9 (837.9) -> 701.4 (811.9) MB, 331.3 / 0 ms [allocation failure] [GC in old space requeste…