functie-xml-info

Gesponsorde koppelingen

PHP script bestanden

  1. functie-xml-info

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
    function xmlinfo($str, $row, $limit=null, $attr=NULL)
    {

        if($attr != NULL)
        {

            preg_match_all("|<$row.*$attr=\"(.*)\".*>.*</$row>|U", $str, $xmlinfo);
        }
else{
            preg_match_all("|<$row.*>(.*)</$row>|U", $str, $xmlinfo);
        }

        if($limit != null)
        {

            $xmlinfo = array_slice($xmlinfo[1], 0, $limit);
        }
else{
            $xmlinfo = $xmlinfo[1];
        }

        return $xmlinfo;
    }

?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.