It is easy to use the function getDate() to obtain the date of today.
But instead of writing plenty of conditions,
is there any easy way to get the date of yesterday?
Thank you.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands,
Following is a solution...
$now = getdate();
$today = date("d-m-Y");
$yesterday =
date("d-m-Y",mktime(0,0,0,$today['mon'],$today['mday']-1,$today['year']);
echo("Today is " . $today . "and yesterday was " . $yesterday);
&q
Oh what a big mistake...sorry!
$now = getdate();
$today = date("d-m-Y");
$yesterday =
date("d-m-Y",mktime(0,0,0,$now['mon'],$now['mday']-1,$now['year']);
echo("Today is " . $today . "and yesterday was " . $yesterday);
&q
I want to include a string into a PNG by ImageTTFText(),
where some of the chars are encoded in BIG5.
I have found the revalent TTF for BIG5.
The output really gives some Traditional Chinese chars,
but the chars are not those I want.
(I think this problem also exist in Shift-JIS encoding.)
Would
4 matches
Mail list logo