- I want to get the date of the month without having the 0 in front.
For example, this month is April.Date(m)indicates April as 04, not 4. Is there any way to do it? - Is it possible to set the array as String itself?
For example,
$arrYear[0]=2012;
$arrYear[1]=2013;
$arrYear[2]=2014;
I do understand that when you fetch the result of array [1], it will be 2012, not 2012. I want it to be set such that when you retrieve the result of an array, it will be 2012.
date('j'). I assume you are pertaining "the result of array [1], it will be 2012, not 2012" to "the result of array [1], it will be 2013, not 2012"? – dqlopez Apr 30 '12 at 2:13