欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP 调用对象方法问题

程序员文章站 2022-03-04 20:55:46
...
Call to a member function get_type() on string in
public function process($aData, &$aResult, $aConfig)
{
    var_dump($this->cart_object_apps);die;//数组里面是3个对象

    foreach ($this->cart_object_apps as $key => $object) 
    {
        $type_name = $object->get_type();//为什么调用此方法会包上述错误

        //$aResult['object'][$type_name] = $object->getAll(true,$aData);




    }

回复内容:

Call to a member function get_type() on string in

public function process($aData, &$aResult, $aConfig)
{
    var_dump($this->cart_object_apps);die;//数组里面是3个对象

    foreach ($this->cart_object_apps as $key => $object) 
    {
        $type_name = $object->get_type();//为什么调用此方法会包上述错误

        //$aResult['object'][$type_name] = $object->getAll(true,$aData);




    }

说明这个$object没有get_type方法。
我猜你是想调用gettype来获取类型吧?请参考这里:http://php.net/manual/zh/function.gettype.php

相关标签: php