Портирование PHP5 на устаревший PHP4, DOMDocument quibbles
Я пытаюсь сделать часть моего кода php5 на устаревшем сервере, который, к сожалению, не может быть обновлен (клиентская машина). if (!isset($docRoot)) { $docRoot = $_SERVER['DOCUMENT_ROOT']; } // generic storage class for the words/phrases $t = new stdClass(); $t->lang = $curPage->lang; // load xml translations, could split this into different files.. $translations = new DOMDocument(); $translations->load($docRoot."/xml/translations.xml"); […]