00001 <?php 00002 00003 00010 function slashify($pfad) 00011 { 00012 if ( substr($pfad,-1,1) == '/') 00013 return $pfad; 00014 else 00015 return $pfad.'/'; 00016 } 00017 00018 function convertToXmlAttribute( $value ) 00019 { 00020 return utf8_encode( htmlspecialchars( $value ) ) ; 00021 } 00022 00023 ?>
1.5.8