[PHP] Any easy way of finding "yesterday"...?

2001-11-13 Thread Harry Lau
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,

[PHP] Re: Any easy way of finding "yesterday"...?

2001-11-13 Thread Harry Lau
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

[PHP] Re: Any easy way of finding "yesterday"...?

2001-11-13 Thread Harry Lau
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

[PHP] Problem with Encoding

2001-09-08 Thread Harry Lau
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