本文整理汇总了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;
}
示例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;
}