本文整理汇总了PHP中PHPWS_Text::xml2php方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPWS_Text::xml2php方法的具体用法?PHP PHPWS_Text::xml2php怎么用?PHP PHPWS_Text::xml2php使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPWS_Text
的用法示例。
在下文中一共展示了PHPWS_Text::xml2php方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDependencies
public function getDependencies()
{
$file = $this->getDirectory() . 'boost/dependency.xml';
if (!is_file($file)) {
return null;
}
$dep_list = PHPWS_Text::xml2php($file, 1);
$module_list = PHPWS_Text::tagXML($dep_list);
if (!isset($module_list['MODULE'])) {
return null;
}
return $module_list;
}
示例2: checkAll
/**
* Checks all modules for update status
*/
public static function checkAll()
{
PHPWS_Core::initModClass('boost', 'Boost.php');
$all_mods = PHPWS_Boost::getAllMods();
if (empty($all_mods)) {
return;
}
PHPWS_Core::initCoreClass('Module.php');
$all_mods[] = 'core';
if (!ini_get('allow_url_fopen')) {
return false;
}
foreach ($all_mods as $mod_title) {
$module = new PHPWS_Module($mod_title);
$file = $module->getVersionHttp();
if (empty($file)) {
continue;
}
$full_xml_array = PHPWS_Text::xml2php($file, 2);
if (empty($full_xml_array)) {
continue;
}
$version_info = PHPWS_Text::tagXML($full_xml_array);
if (empty($version_info) || empty($version_info['VERSION'])) {
continue;
}
$_SESSION['Boost_Needs_Update'][$mod_title] = $version_info['VERSION'];
}
}