PHP cal_from_jd function isn't working -
i'm troubleshooting issues we've been having on 1 of websites manage. during testing, found cal_from_jd wasn't functioning correctly.
here's test file made:
<?php $today = unixtojd(mktime(0, 0, 0, 8, 16, 2003)); echo $today . '<br>'; print_r(cal_from_jd($today, cal_gregorian)); ?> i've uploaded our server here (php 5.2) doesn't work: http://dutchcanadiancentre.com/xml/test.php
and here (php 5), work: http://studiopost.com/test/test.php
is php version number issue?
Comments
Post a Comment