source: branches/1.5/include/functions_xml.inc.php @ 27569

Last change on this file since 27569 was 862, checked in by plg, 19 years ago
  • improvement: long localized messages are in HTML files instead of $lang array. This is the case of admin/help and about pages.
  • deletion: of unused functions (ts_to_mysqldt, is_image, TN_exists, check_date_format, date_convert, get_category_directories, get_used_metadata_list, array_remove, pwg_write_debug, get_group_restrictions, get_all_group_restrictions, is_group_allowed, style_select, deprecated_getAttribute).
  • new: many new contextual help pages to replace descriptions previously included in pages.
  • modification: reorganisation of language files. Deletion of unused language keys, alphabetical sort. No faq.lang.php anymore (replaced by help.html). Only done for en_UK.iso-8859-1.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2005-09-14 21:57:05 +0000 (Wed, 14 Sep 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 862 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27define( 'ATT_REG', '\w+' );
28define( 'VAL_REG', '[^"]*' );
29
30//------------------------------------------------------------------- functions
31// getContent returns the content of a tag
32//
33// example : getContent( "<name>Joe</name>" ) returns "Joe"
34//
35// It also works with strings containing themself sub-tags :
36// <perso><name>Jean</name><firstname>Billie</fisrtname></perso> ->
37// <name>Jean</name><firstname>Billie</firstname>
38function getContent( $element )
39{
40  // deleting start of the tag
41  $content = preg_replace( '/^<[^>]+>/', '', $element );
42  // deleting end of the tag
43  $content = preg_replace( '/<\/[^>]+>$/', '', $content );
44  // replacing multiple instance of space character
45  $content = preg_replace( '/\s+/', ' ', $content );
46
47  return $content;
48}
49
50// The function get Attribute returns the value corresponding to the
51// attribute $attribute for the tag $element.
52function getAttribute( $element, $attribute )
53{
54//  echo htmlentities($element).'<br /><br />';
55  $regex = '/^<\w+[^>]*'.$attribute.'\s*=\s*"('.VAL_REG.')"/i';
56  if ( preg_match( $regex, $element, $out ) ) return $out[1];
57  else return '';
58}
59       
60// The function getChild returns the first child
61// exemple : getChild( "<table><tr>XXX</tr><tr>YYY</tr></table>", "tr" )
62//           returns "<tr>XXX</tr>"
63function getChild( $document, $node )
64{
65  $regex = '/<'.$node.'(\s+'.ATT_REG.'="'.VAL_REG.'")*';
66  $regex.= '(\s*\/>|>.*<\/'.$node.'>)/U';
67
68  preg_match( $regex, $document, $out );
69  return $out[0];
70}
71
72// getChildren returns a list of the children identified by the $node
73// example :
74//     getChild( "<table><tr>XXX</tr><tr>YYY</tr></table>", "tr" )
75//     returns an array with :
76//          $array[0] equals "<tr>XXX</tr>"
77//          $array[1] equals "<tr>YYY</tr>"
78function getChildren( $document, $node )
79{
80  $regex = '/<'.$node.'(\s+'.ATT_REG.'="'.VAL_REG.'")*';
81  $regex.= '(\s*\/>|>.*<\/'.$node.'>)/U';
82
83  preg_match_all( $regex, $document, $out );
84  return $out[0];
85}
86       
87// get_CodeXML places the content of a text file in a PHP variable and
88// return it. If the file can't be opened, returns false.
89function getXmlCode( $filename )
90{
91  $file = fopen( $filename, 'r' );
92  if ( !$file )
93  {
94    return false;
95  }
96
97  $xml_content = '';
98  while ( !feof( $file ) )
99  {
100    $xml_content .= fgets( $file, 1024 );
101  }
102  fclose( $file );
103  $xml_content = str_replace( "\n", '', $xml_content );
104  $xml_content = str_replace( "\t", '', $xml_content );
105
106  return $xml_content;
107}
108?>
Note: See TracBrowser for help on using the repository browser.