22

Code:

$today_mem = date("d.m");
echo $today_mem; // -> 15.02

I need to transform dates like 15.02 into 15.2, also need to transform for ex. 07.02 into 7.2 and so on every day. So the question is: how to delete firstdigit 0 from date and month. Any short solutions?

966p
  • 535
  • 2
  • 7
  • 17

3 Answers3

57

You'll want to use:

$today_mem = date("j.n");
echo $today_mem; // -> 15.2

To remove the leading zeros. See more format modifiers at: php.net/date

chrisn
  • 2,095
  • 15
  • 20
30

Use j instead of d and n instead of m:

$today_mem = date("j.n"); 

Reference at the PHP doc site.

Jon
  • 428,835
  • 81
  • 738
  • 806
0

use

$today_mem = date("j")
Suraj Rao
  • 29,388
  • 11
  • 94
  • 103