码迷,mamicode.com
首页 > 其他好文 > 详细

Using $this when not in object context in

时间:2017-08-13 09:52:21      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:错误信息   dmi   obj   html   art   object c   pre   require   self   

错误信息:$this引用没有上下文

原因:在PHP5中,static声明的静态方法里不可以使用$this 需要使用self来引用当前类中的方法或是变量

 引用的方法里不可以带$this(示例代码中为getres()方法)

示例代码如下:

<?php
namespace syhl\admin\page\record;  // 命名空间

require_once  dirname(__FILE__).‘/../../../../common/smarty_loader.php‘;  

class record {
  
    
     public static function exec($smarty) {    
        
        $ttr=self::getres();
        $smarty->assign("arr",$ttr);      
        $smarty->display ( ‘rec_mgr.html‘ );
    }
   function getres(){
      $arr = array (  
       "1" => ‘test‘,  
       ‘2‘ => ‘me‘,  
       array (  
        "3" => "beij",  
        "4" => "zz"  
       ),  
       array (  
        "5",  
        "6" => "ewrwer",  
        "7" => "ssss"  
       )  
      );  
      return $arr;
    }
}
record::exec($smarty);

?>

 

Using $this when not in object context in

标签:错误信息   dmi   obj   html   art   object c   pre   require   self   

原文地址:http://www.cnblogs.com/yolo-bean/p/7352237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!