Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用进度条来显示用户在订阅中剩余的时间。我环顾四周,但找不到使用日期来控制 css % 的方法
http://jsfiddle.net/vjNpj/1298/
我正在使用此代码显示用户帐户到期
<?php $session =& JFactory::getSession(); echo $session->get('exp_date');?>
它显示 MM/DD/YYYY
有谁知道如何做到这一点?谢谢你。
您需要找到两个日期之间的百分比。这篇文章应该有所帮助。
如何找到两个时间戳之间的百分比
$begin= strtotime('-2 weeks'); $now = time(); $end = strtottime('+2 weeks'); $percent = ($now-$begin) / ($end-$begin) * 100;