Mosafers
یک شنبه 12 آبان 1392, 03:04 صبح
با سلام دوستان گلم من میخوام توسط کتابخانه بسیار عالی jdf که پیوست کرم کد های زیر رو تبدیل به شمسی کنم مثلا باید چه تغییراتی ایجاد کنم ؟
/**
* This function will return true if this day is today
*
* @param integer $offset
* @return boolean
*/
function isToday($offset = null) {
$today = new DateTimeValue(time() + $offset);
$today->beginningOfDay();
return $this->getDay() == $today->getDay() &&
$this->getMonth() == $today->getMonth() &&
$this->getYear() == $today->getYear();
} // isToday
function isTomorrow($offset = null) {
return $this->isToday($offset + 86400);
} // isTomorrow
یک مثال ساده از نحوه استفاده از jdf :
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<?php
include_once('jdf.php');//:افزودن فایل نرم افزار
echo jdate("امروز: l - ساعت : H:i:s - تاریخ : Y/m/d");
?>
خروجی :
امروز: شنبه - ساعت : ۰۰:۵۷:۳۹ - تاریخ : ۱۳۹۲/۰۸/۱۱
لطفا راهنمایی بفرماید.
/**
* This function will return true if this day is today
*
* @param integer $offset
* @return boolean
*/
function isToday($offset = null) {
$today = new DateTimeValue(time() + $offset);
$today->beginningOfDay();
return $this->getDay() == $today->getDay() &&
$this->getMonth() == $today->getMonth() &&
$this->getYear() == $today->getYear();
} // isToday
function isTomorrow($offset = null) {
return $this->isToday($offset + 86400);
} // isTomorrow
یک مثال ساده از نحوه استفاده از jdf :
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<?php
include_once('jdf.php');//:افزودن فایل نرم افزار
echo jdate("امروز: l - ساعت : H:i:s - تاریخ : Y/m/d");
?>
خروجی :
امروز: شنبه - ساعت : ۰۰:۵۷:۳۹ - تاریخ : ۱۳۹۲/۰۸/۱۱
لطفا راهنمایی بفرماید.