doukong6031 2013-12-14 20:26
浏览 23
已采纳

无法识别的静态方法 - 订单是否重要?

I have the error

Call to undefined method Exception::message()

inside the object calling

Utils::message()

(I am catching the Exception and replacing by the message)

The file containing this object is included (require_once) by the top file together with another file defining Utils.

So my question is why the method of Utils is not recognized. All classes are included before the main code. Does the inclusion order matter? Any other hints?

EDIT. My Utils class:

class Utils {

   private static $count;
   private static $aggregateCount, $time, $last, $previous;

 ...

  public static function message () {
      echo "
 Count: ", self::$count++, " ";
     $array = func_get_args();
     foreach ($array as $entry) {
       if (is_array($entry)) {
         echo print_r($entry);
       } else {
         echo $entry;         
       }
     }
  }

 ...
}

And here is the function using the class:

  public function updateManyWithId ($schema, array $bundle) {
    foreach ($bundle as $hash) {
      $id = $hash[ID_KEY];
      $hash = $this->_adjustId($schema, $hash);
      try {
        $this->update($schema, $id, $hash);
      } catch (Exception $e) {
        Utils::message("Cannot update hash: ", $hash, $e->message());
      }
    }
  }
  • 写回答

1条回答 默认 最新

  • dongzhun4898 2013-12-14 20:30
    关注

    $e->message() Is the problem. That refers to a class called Exception which is expected to have a method called message, but your Exception class does not have that method.

    Look at the constructor of your Exception. You're passing in a message when you throw it, perhaps you're looking for $e->getMessage().

    Read here: http://www.php.net/manual/en/exception.getmessage.php

    To summarize, consider this:

    class Exception {
      //construct is used when you throw new Exception (instantiate the class)
      public function __construct($message) {
        $this->message = $message; //now the object has a "message" property
      }
      //this is a "getter" for this object's message
      public function getMessage() {
        return $this->message; //return the message
      }
    }
    

    Note that the standard usage of getters/setters is to use getProperty and setProperty as the method name that returns/sets that property.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度