I'm trying to build my agenda in php, using strtotime to return dates based on what wants the user, but I observe an understood issue whith strtotime!
When I say Fisrt Monday of Septembre 2014 it gives me 08 September. normaly it should return 01 September!
What do you think?
<?php
$j = strtotime("First Monday Septembre 2014");
echo date('d F',$j);
?>
the same problem on
<?php
$j = strtotime("First Monday July 2013");
echo date('d F',$j);
?>
otherwise when the day is not the first on the month it gives you the right day