Bundan 4 hafta tarihinden sonra görüntülemek nasıl? Ben bir argüman geçmek istiyorum

0 Cevap php
echo date( "F jS, Y" , strtotime("now +3 weeks") );

It gives the result as July 2nd, 2010 . Fine.Now I want to pass the argument like this.

The original print_r($originalamount) give the result like this

Array ( 
      [0] => 4 Months
      [1] => 3500 
)

Benim kod

 $text=trim($originalamount[0]);
 $text1="now +".$text;

 echo date( "F jS, Y" , strtotime($text1)) ;

Dışarı böyle geliyor koymak

December 31st, 1969 

Nedenini bilmiyorum.

alt metni

0 Cevap