douyi3767 2013-04-01 13:15 采纳率: 0%
浏览 45
已采纳

在另一个函数中调用Class中的函数

I'd like to understand better how calls to functions work in OOP. I have the following sample:

class SomeClass {
    function __construct(){
        //run function do()
        //run function include()
        //run function run()
    }

    public function do($foo){
        //do some stuff
    }

    public function include(){
        require_once( CONSTANT . 'required.php' );
    }

    public function run(){
        required_func();
    }
}

$load_class = new SomeClass();

in required.php:

function required_func(){

    $customerInfo = "info";
    $customer = $this -> do($customerInfo); //--> This isn't right
    return $customer;
}

What I'm trying to do is to have required_func() run the do() with the $customerInfo. So essentially: How to call a Class public function from another function included in the require_once file? Am I even remotely on track here?

Thanks for your help

  • 写回答

1条回答 默认 最新

  • dsc56927 2013-04-01 13:21
    关注

    $this isn't in scope for function required_func()

    class SomeClass {
        function __construct(){
            //run function do()
            //run function include()
            //run function run()
        }
    
        public function do($foo){
            //do some stuff
        }
    
        public function include(){
            require_once( CONSTANT . 'required.php' );
        }
    
        public function run(){
            required_func($this);
        }
    }
    
    $load_class = new SomeClass();
    

    and

    function required_func($customerObject){
    
        $customerInfo = "info";
        $customer = $customerObject->do($customerInfo);
        return $customer;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 正弦信号发生器串并联电路电阻无法保持同步怎么办
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 个人网站被恶意大量访问,怎么办
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)