当前位置: 首页>>代码示例>>PHP>>正文


PHP COM::IntoElem方法代码示例

本文整理汇总了PHP中COM::IntoElem方法的典型用法代码示例。如果您正苦于以下问题:PHP COM::IntoElem方法的具体用法?PHP COM::IntoElem怎么用?PHP COM::IntoElem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在COM的用法示例。


在下文中一共展示了COM::IntoElem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: load_alluser

function load_alluser()
{
    global $userauth_config_file;
    global $xml_database_comname;
    if (!file_exists($userauth_config_file)) {
        return false;
    }
    $filename = encode_utf8($userauth_config_file);
    $xml = new COM($xml_database_comname, NULL, CP_UTF8) or die("create com instance error");
    $xml->ReadDB($filename);
    $xml->ResetPos();
    $xml->FindElem("database");
    $xml->IntoElem();
    if ($xml->FindElem("user")) {
        $xml->IntoElem();
        while ($xml->FindElem("item")) {
            unset($userinfo);
            $xml->ResetChildPos();
            while ($xml->FindChildElem("")) {
                $strTagName = strtolower($xml->GetChildTagName());
                $strTagValue = $xml->GetChildData();
                $userinfo[$strTagName] = $strTagValue;
                if ($strTagName == 'accoutstatus') {
                    $userinfo['accountstatus'] = $strTagValue;
                }
            }
            $userList[] = $userinfo;
        }
    }
    return $userList;
}
开发者ID:honj51,项目名称:taobaocrm,代码行数:31,代码来源:userlib.php

示例2: listLastVisit

function listLastVisit()
{
    global $xml_database_comname;
    global $userfolder;
    global $lastvisit_config_file;
    $lastvisitfile = $userfolder . $lastvisit_config_file;
    $lastvisitfile = encode_utf8($lastvisitfile);
    $xml = new COM($xml_database_comname, NULL, CP_UTF8) or die("create com instance error");
    $xml->ReadDB($lastvisitfile);
    $xml->ResetPos();
    if (!$xml->FindElem("database")) {
        return false;
    }
    $xml->IntoElem();
    if (!$xml->FindElem("lastvisit")) {
        return false;
    }
    $lastvisit = array();
    while ($xml->FindElem("item")) {
        $info = array();
        $xml->ResetChildPos();
        while ($xml->FindChildElem("")) {
            $name = $xml->GetChildTagName();
            $value = $xml->GetChildData();
            $info[strtolower($name)] = $value;
        }
        $lastvisit[] = $info;
    }
    return true;
}
开发者ID:honj51,项目名称:taobaocrm,代码行数:30,代码来源:lib.lastvisit.php


注:本文中的COM::IntoElem方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。