summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/docs/opml-export.markdown
blob: 4d7cf8db0d9775320978f1eb682cad0774a8820d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
OPML export
===========

Example with no categories
--------------------------

```php
use PicoFeed\Export;

$feeds = array(
    array(
        'title' => 'Site title',
        'description' => 'Optional description',
        'site_url' => 'http://petitcodeur.fr/',
        'site_feed' => 'http://petitcodeur.fr/feed.xml'
    )
);

$export = new Export($feeds);
$opml = $export->execute();

echo $opml; // XML content
```

Example with categories
-----------------------

```php
use PicoFeed\Export;

$feeds = array(
    'my category' => array(
        array(
            'title' => 'Site title',
            'description' => 'Optional description',
            'site_url' => 'http://petitcodeur.fr/',
            'site_feed' => 'http://petitcodeur.fr/feed.xml'
        )
    )
);

$export = new Export($feeds);
$opml = $export->execute();

echo $opml; // XML content
```