We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62b3c3b commit 2015dbaCopy full SHA for 2015dba
README.md
@@ -222,3 +222,8 @@ LEFT JOIN medicine_category AS b ON a.category = b.id
222
LEFT JOIN manufacturer AS c ON a.manufacturer = c.id
223
LEFT JOIN medicine_unit AS d ON a.unit = d.id;
224
```
225
+### Get the number of days in a month for a specified year and calendar
226
+```php
227
+$d=cal_days_in_month(CAL_GREGORIAN,10,2005);
228
+echo "There was $d days in October 2005";
229
+```
0 commit comments