How can I find number of days in month

can anyone knows how can I find number of days in month ? ( Server Connect)
I cant do this with formatter …

what about smth like this:??

date(‘t’);

http://php.net/manual/tr/function.cal-days-in-month.php

can anyone guide me @Teodor @George @patrick

in fact, we can look at this issue from a wider perspective. There are too many functions in php or asp or another software language. perhaps you can not add all the functions. What can be done to use server-side functions and how wappler users can benefit. This will make wappler more colorful.

I need this function to calculate my invoice now. I’m sure other functions will be needed or need by other users too.

Forexample
I want to create trader application and I know I have to use php trader functions
Forexample ;
http://php.net/manual/en/ref.trader.php

Okay but this gives you for the current month: 31

date(‘t’);

And maybe you can build a formatter around this.? This gives you the longest „date“ from the current month:

date(‘Y-m-t’);

yeap thank you @Freddy_Blockchain your solution perfect and solved my problem