當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PHPWS_Text::tagXML方法代碼示例

本文整理匯總了PHP中PHPWS_Text::tagXML方法的典型用法代碼示例。如果您正苦於以下問題:PHP PHPWS_Text::tagXML方法的具體用法?PHP PHPWS_Text::tagXML怎麽用?PHP PHPWS_Text::tagXML使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PHPWS_Text的用法示例。


在下文中一共展示了PHPWS_Text::tagXML方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: 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'];
     }
 }
開發者ID:HaldunA,項目名稱:phpwebsite,代碼行數:32,代碼來源:Action.php

示例2: 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;
 }
開發者ID:HaldunA,項目名稱:phpwebsite,代碼行數:13,代碼來源:Module.php

示例3: tagXML

 public static function tagXML($arr_vals)
 {
     if (empty($arr_vals)) {
         return null;
     }
     foreach ($arr_vals as $tag) {
         if (is_array($tag['value'])) {
             $new_arr[$tag['tag']][] = PHPWS_Text::tagXML($tag['value']);
         } else {
             $new_arr[$tag['tag']] = $tag['value'];
         }
     }
     return $new_arr;
 }
開發者ID:HaldunA,項目名稱:phpwebsite,代碼行數:14,代碼來源:PHPWS_Text.php


注:本文中的PHPWS_Text::tagXML方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。