PHP Custom function to implement the format of the second method _php tips

Source: Internet
Author: User

The example in this article describes how PHP custom functions implement the format of seconds. Share to everyone for your reference, specific as follows:

function Vtime ($time) {
  $output = ';
  foreach (Array (86400 => ' Day ', 3600 => ' hour ', => ' min ', 1 => ' sec ') as $key => $value) {
    if ($time >= $k EY) $output. = Floor ($time/$key). $value;
    $time%= $key;
  }
  if ($output = = ") {
    $output =0;
  }
  return $output;
}
$now =time ();
$oldtime =86465;
echo Vtime ($now);//output: 17,058 days 4 hours 8 minutes 55 sec
Echo Vtime ($oldtime);/output: 1 days 1 minutes 5 seconds

For more information about PHP interested readers can view the site topics: "PHP date and Time usage summary", "PHP Mathematical Calculation Skills Summary", "PHP Array" operation Skills Encyclopedia, "PHP Basic Grammar Primer", "PHP Operations and Operator Usage Summary", " Introduction to PHP object-oriented programming program, "PHP Network Programming Skills Summary", "PHP string (String) Usage Summary", "Php+mysql database Operation Tutorial" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.