Ja kann man!
http://www.phpclasses.org/browse/package/4484.html runterladen. Darin ist eine
simplexml.class.php die hochladen nach /lib/ und ganz ans ende von der lib/functions.lib.php (vor ?>) folgendes einfügen:
PHP-Code:
if(!function_exists("simplexml_load_file"))
{
require_once('lib/simplexml.class.php');
function simplexml_load_file($file){
$sx = new simplexml;
return $sx->xml_load_file($file);
}
}