所以我试图通过在我的layout.phtml中输入以下内容来将RDFA doctype添加到zend中......
$doctypeHelper = new Zend_View_Helper_Doctype();
$doctypeHelper->doctype('XHTML1_RDFA');
这样我就可以使用 headMeta->appendProperty() 函数....但是它返回了这个错误:
Fatal error: Uncaught exception 'Zend_View_Exception' with message 'The specified doctype is malformed'
我该如何解决这个问题?