我正在尝试扩展一个类:
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()
,则代码中的更改不会生效。例如,我仍然可以创建一个标题。我是否正确地扩展了课程?
答案 0 :(得分:6)
看起来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