Skip to content

Instantly share code, notes, and snippets.

View RdeWilde's full-sized avatar

R. de Wilde RdeWilde

View GitHub Profile
package my;
public interface IModel {}
package my;
public interface IWriter
{
public IWriter add( ?????????? target);
}
<?php
if (!$sContent = file_get_contents('http://www.biblija.net/biblija.cgi?m=lc1,1-10&id42=0&l=nl'))
throw new Exception('Tekst kon niet geladen worden');
// Try to get encoding right, lose the strange encoding chars
$sContent = mb_convert_encoding($sContent, 'UTF-8', mb_detect_encoding($sContent));
$sContent = mb_convert_encoding($sContent, 'html-entities', 'UTF-8');
$oDOM = new DOMDocument('1.0');