how to extract month from given date by using string
functions?
Answers were Sorted based on User's Feedback
Answer / guest
print strftime('%B',time());
This will return the name of the current month.
And date('M') also will return current month.
If you want to get month from the date then use the
following way.
$date=date('d/M/Y')
$date=substr($date,strpos($date,'/')+1);
$date=substr($date,0,strpos($date,'/'));
Finally $date will contain the month name.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / subodh
Assume date is like $datestr = '01-12-2013';
then it can be below two ways:
1. echo date('M', strtotime($datestr)); // for textual
// Or date('m', strtotime($datestr)); // for numeric
2. $list($d, $m, $y) = explode('-', $datestr);
echo $m; // for numeric
| Is This Answer Correct ? | 0 Yes | 0 No |
use this code.
[code]
?php
print date ( 'm',mktime ( 0,0,0,02,26,2010 ) ) ;
?>
~
[/code]
| Is This Answer Correct ? | 0 Yes | 3 No |
What is strstr php?
How to access a Static Member of a Class in PHP?
How is session data stored?
what is the diference between php4 and php5
2 Answers Tavant Technologies,
How to get ip address of a server in php?
write a program to print [123] [456] [789] note : braces also need to be printed
What is putenv?
How to increase the maximum execution time of a script in php?
Which function is used in php to count the total number of rows returned by any query?
What is magic quotes?
How to call a php function from another php file?
Explain me how failures in execution are handled with include() and require() functions?