Пример #1
0
$request = new JentiRequestWiktionary($config);
$jenti_word = new JentiWord($config);
ob_implicit_flush(TRUE);
$log = log_open();
foreach ($words as $word) {
    $word_array = $request->get_word($word);
    if ($request->error) {
        echo_msg_flush($request->error);
        log_writeln($log, $request->error);
        continue;
    }
    foreach ($word_array as $word_info) {
        $jenti_word->add_word_and_definitions($word_info);
        if (!$jenti_word->error) {
            echo_msg_flush(print_r($word_info, true));
            log_writeln($log, print_r($word_info, true));
        }
        if ($jenti_word->error) {
            echo_msg_flush($jenti_word->error);
            log_writeln($log, $jenti_word->error);
        }
    }
}
log_close($log);
ob_implicit_flush(FALSE);
?>


</body>
</html>
Пример #2
0
function registration_reload()
{
    log_close();
    header('Location: ' . BASE_URL . 'index.php?p=Aanmelden');
    exit;
}