コード例 #1
0
ファイル: 000.php プロジェクト: arikpeterson/vbimpex
 /**
  * Returns the user_id => user array
  *
  * @param	object	databaseobject	The database object to run the query against
  * @param	string	mixed			Table database type
  * @param	string	mixed			The prefix to the table name i.e. 'vb3_'
  * @param	int		mixed			Start point
  * @param	int		mixed			End point
  *
  * @return	array
  */
 function get_zeroforum_user_details($user_file)
 {
     $return_array = array();
     // Check that there is not a empty value
     if (empty($user_file)) {
         return $return_array;
     }
     $xmlobj = new XMLparser(false, $user_file);
     return $xmlobj->parse();
 }