total week number in php

Discussion in 'PHP' started by suvidha.writer, Oct 19, 2010.

  1. #1
    hello

    we can get second since 1970 in php. like that can we get total number of week since 1970 ?

    when i use date('W') function only getting week of that year ..

    any solution ?
     
    suvidha.writer, Oct 19, 2010 IP
  2. mikecampbell

    mikecampbell Peon

    Messages:
    26
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    $weeks = ceil(time()/(60*60*24*7));
    PHP:
     
    mikecampbell, Oct 20, 2010 IP
  3. suvidha.writer

    suvidha.writer Active Member

    Messages:
    75
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    55
    #3
    thanks mike
     
    suvidha.writer, Oct 20, 2010 IP