This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package my; | |
public interface IModel {} | |
package my; | |
public interface IWriter | |
{ | |
public IWriter add( ?????????? target); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); |
NewerOlder