本文整理汇总了PHP中Tinebase_Helper::removeIllegalXMLChars方法的典型用法代码示例。如果您正苦于以下问题:PHP Tinebase_Helper::removeIllegalXMLChars方法的具体用法?PHP Tinebase_Helper::removeIllegalXMLChars怎么用?PHP Tinebase_Helper::removeIllegalXMLChars使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tinebase_Helper
的用法示例。
在下文中一共展示了Tinebase_Helper::removeIllegalXMLChars方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: parseMultiStatus
/**
* Parses a WebDAV multistatus response body
*
* @param string $body xml body
* @return array
*/
public function parseMultiStatus($body)
{
$oldSetting = libxml_use_internal_errors(true);
try {
$result = parent::parseMultiStatus($body);
if (count($xmlErrors = libxml_get_errors()) > 0) {
if (Tinebase_Core::isLogLevel(Zend_Log::WARN)) {
Tinebase_Core::getLogger()->warn(__METHOD__ . '::' . __LINE__ . ' XML errors occured: ' . print_r($xmlErrors, true));
}
}
libxml_clear_errors();
libxml_use_internal_errors($oldSetting);
} catch (InvalidArgumentException $e) {
libxml_clear_errors();
libxml_use_internal_errors($oldSetting);
// remove possible broken chars here to avoid simplexml_load_string errors
// this line may throw an Exception again! thats why the libxml_* functions are called in try and catch!
$result = parent::parseMultiStatus(Tinebase_Helper::removeIllegalXMLChars($body));
}
return $result;
}