vlibDate

vLIB logo

1. Synopsis

Example

    include "./vLIB/vlibDate.php";
    $date = new vlibDate();
    $today = $date->now();

    // now we loop through all languages and display today's date
    foreach ($date->accepted_langs as $lang) {
       $date->setLang ($lang);
       echo $date->formatDate($today, '%A %d %B %Y<br>');
    }


If everything goes well, you should see today's date being displayed in all of the languages supported by this version of vlibDate.