LDAPAccountManager/lam/lib/xml_parser.inc

67 lines
1.7 KiB
PHP
Raw Permalink Normal View History

<?php
/*
$Id$
2009-10-27 18:47:12 +00:00
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
2006-03-03 17:30:35 +00:00
Copyright (C) 2003 - 2006 Michael Duergner
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
2004-10-30 16:46:06 +00:00
/**
2012-07-15 12:05:47 +00:00
* Simple XML parser.
2004-10-30 16:46:06 +00:00
*
2006-03-03 17:30:35 +00:00
* @author Michael Duergner
2004-10-30 16:46:06 +00:00
* @package PDF
*/
/**
2012-07-15 12:05:47 +00:00
* Simple XML parser.
2004-10-30 16:46:06 +00:00
*
2006-03-03 17:30:35 +00:00
* @author Michael Duergner
2004-10-30 16:46:06 +00:00
* @package PDF
*/
class xmlParser {
2012-07-15 12:05:47 +00:00
/** XML parser */
2007-10-13 17:46:56 +00:00
private $xmlParser;
2004-10-30 16:46:06 +00:00
/**
2007-12-28 16:08:56 +00:00
* Constructor
2004-10-30 16:46:06 +00:00
*/
2007-12-28 16:08:56 +00:00
function __construct() {
$this->xmlParser = xml_parser_create();
2005-02-16 21:00:19 +00:00
xml_set_object($this->xmlParser,$this);
xml_parser_set_option($this->xmlParser, XML_OPTION_CASE_FOLDING, 1);
xml_parser_set_option($this->xmlParser, XML_OPTION_SKIP_WHITE, 1);
}
2004-10-30 16:46:06 +00:00
/**
2012-07-15 12:05:47 +00:00
* Starts the parsing.
2004-10-30 16:46:06 +00:00
*
2012-07-15 12:05:47 +00:00
* @param String $filename file name
* @return array XML structure
2004-10-30 16:46:06 +00:00
*/
function parse($filename) {
if(file_exists($filename)) {
2007-10-13 17:46:56 +00:00
$xmlStructure = array();
$xmlIndex = array();
xml_parse_into_struct($this->xmlParser,implode("\n",file($filename)),$xmlStructure,$xmlIndex);
return array($xmlStructure,$xmlIndex);
}
2007-10-13 17:46:56 +00:00
return array();
}
}
?>