blob: 02491a22b9b59a29c1807cf110ea20d72a4d3337 (
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
47
48
49
50
|
<?php
class OpmlManager
{
public static function load($file)
{
if (!file_exists($file)) {
throw new Exception('OPML file not found!');
}
$opml = new opml();
//Remove BOM if needed
$BOM = '/^/';
$fileContent = file_get_contents($file);
$fileContent = preg_replace($BOM, '', $fileContent, 1);
//Parse
$opml->parse($fileContent);
return $opml;
}
/**
* @param Opml $opml
* @param string $file
*/
public static function save($opml, $file){
$out = '<?xml version="1.0"?>'."\n";
$out.= '<opml version="1.1">'."\n";
$out.= '<head>'."\n";
$out.= '<title>'.htmlspecialchars($opml->getTitle()).'</title>'."\n";
$out.= '<dateCreated>'.date('c').'</dateCreated>'."\n";
$out.= '<dateModified>'.date('c').'</dateModified>'."\n";
$out.= '</head>'."\n";
$out.= '<body>'."\n";
foreach ($opml->entries as $person) {
$out.= '<outline text="' . htmlspecialchars($person['name'], ENT_QUOTES) . '" htmlUrl="' . htmlspecialchars($person['website'], ENT_QUOTES) . '" xmlUrl="' . htmlspecialchars($person['feed'], ENT_QUOTES) . '" isDown="' . htmlspecialchars($person['isDown'], ENT_QUOTES) . '"/>'."\n";
}
$out.= '</body>'."\n";
$out.= '</opml>';
file_put_contents($file, $out);
}
public static function backup($file){
copy($file, $file.'.bak');
}
}
|