-
-class Tweeper {
-
- public function __construct($stylesheet) {
- $stylesheet_contents = $this->get_contents($stylesheet);
-
- $xslDoc = new DOMDocument();
- $xslDoc->loadXML($stylesheet_contents);
-
- $this->xsltProcessor = new XSLTProcessor();
- $this->xsltProcessor->registerPHPFunctions();
- $this->xsltProcessor->importStylesheet($xslDoc);
- }
-
- private function get_contents($uri) {
- # https://www.wjsams.com/c/docs/Wiki/Php-HowToSetUserAgentOnFileGetContents
- $opts = array(
- 'http' => array(
- 'method' => "GET",
- 'header' => join(array(
- "Accept-language: en\r\n",
- "User-Agent: {" + USER_AGENT + "}\r\n"
- ))
- )
- );
-
- $context = stream_context_create($opts);
- $contents = file_get_contents($uri, false, $context);
- return $contents;