在PHP中扩展类



我正在尝试扩展一个类:

class CustomParsedown extends Parsedown {
    protected function blockComment($Line) { return; }
    protected function blockCommentContinue($Line, array $Block) { return; }
    protected function blockHeader($Line) { return; }
    protected function blockSetextHeader($Line, array $Block = NULL) { return; }
}
function markdown($markdown) {
    return CustomParsedown::instance()->setMarkupEscaped(true)->text($markdown);
}

如果我从另一个页面运行带有markdown的markdown(),则代码中的更改不会生效。例如,我仍然可以创建一个标题。我是否正确地扩展了类?

看起来像Parsedowns static function instance()引用$instance = new self();,这意味着它将实例化一个新的Parsedown类,而不是您的扩展类。

尝试复制他们的实例方法到你的类中,我也把new self改成了new static

class CustomParsedown extends Parsedown {
  static function instance($name = 'default')
  {
      if (isset(self::$instances[$name]))
      {
          return self::$instances[$name];
      }
      $instance = new static();
      self::$instances[$name] = $instance;
      return $instance;
  }
  private static $instances = array();
}
https://github.com/erusev/parsedown/blob/master/Parsedown.php


参见New self vs. New static

相关内容

  • 没有找到相关文章

最新更新