3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Prorate { // source and destination prices will be expressed internally as price per day once set. private $source_price = 0; private $destination_price = 0; // source expiry is what you're pro-rating. destination expiry is what you're converting. private $source_expiry; private $destination_expiry; // today defaults to the current date, but can be set to an arbitrary value using Prorate::set_today() private $today; // terms are important! they allow us to calculate the current price per day private $source_term = 12; private $destination_term = 12; // source price is what you're pro-rating. Destination_price is what you're converting. Source and destination terms // follow the same rules. public function __construct($source_price = NULL, $destination_price = NULL, $source_term = 12, $destination_term = 12) { if ($source_price != NULL) { $this->set_source_price($source_price, $source_term); } if ($destination_price != NULL) { $this->set_destination_price($destination_price, $destination_term); } $this->source_expiry = new DateTime(); $this->destination_expiry = new DateTime(); $this->today = new DateTime(); $this->source_term = $source_term; $this->destination_term = $destination_term; } // set the source expiry date. Valid inputs are either a DateTime object, or a string format listed at // http://php.net/manual/en/datetime.formats.php public function set_source_expiry($date) { if(is_object($date) && is_a($date, 'DateTime')) { $this->source_expiry = $date; } else { $this->source_expiry = new DateTime($date); } return $this; } public function get_source_expiry() { return $this->source_expiry; } // set the destination expiry date. Valid inputs are either a DateTime object, or a string format listed at // http://php.net/manual/en/datetime.formats.php public function set_destination_expiry($date) { if(is_object($date) && is_a($date, 'DateTime')) { $this->destination_expiry = $date; } else { $this->destination_expiry = new DateTime($date); } return $this; } public function get_destination_expiry() { return $this->destination_expiry; } // returns the number of (positive) days remaining between a source date in the future, and today private function days_remaining($date) { return $this->diff_days($date, $this->today); } // determines the daily value of a given price over a given number of months. // 30.44 is 365 days / 12 months private function value_per_day($price_in_cents, $term_in_months) { $value_per_day = $price_in_cents / $term_in_months / 30.44; return ceil($value_per_day) / 100; } // Allows you to change what "today" is defined as. Defaults to the current date. Valid values are // a DateTime object, or a string representation of a date in one of the formats listed at: // http://php.net/manual/en/datetime.formats.php public function set_today($date = NULL) { if(is_object($date) && is_a($date, 'DateTime')) { $this->today = $date; } else { if (is_null($date)) { $this->today = new DateTime(); } else { $this->today = new DateTime($date); } } } // sets the source price (the thing you're pro-rating) // valid inputs are a price in cents, and a term expressed in months public function set_source_price($price_in_cents, $term_in_months) { $this->source_price = $this->value_per_day($price_in_cents, $term_in_months); return $this; } public function get_source_price() { return $this->source_price; } // sets the target price (the thing you're converting) // valid inputs are a price in cents, and a term expressed in months public function set_destination_price($price_in_cents, $term_in_months) { $this->destination_price = $this->value_per_day($price_in_cents, $term_in_months); return $this; } public function get_destination_price() { return $this->destination_price; } // calculates the target value based on the current calculated price per day and time // remaining on expiry public function target_value() { return $this->days_remaining($this->destination_expiry) * $this->destination_price; } // calculates the number of days to pro-rate. this does not include the number of days // remaining on the source. public function add_days() { return ceil($this->target_value() / $this->source_price); } // DateTime diff implementation for systems that are not new enough for PHP's regular DateTime::diff() method // if there is a partial day, it is rounded up to count as a full day. private function diff_days(DateTime $x, DateTime $y) { $y = strtotime($y->format('Y-m-d')); $x = strtotime($x->format('Y-m-d')); $diff = $x - $y; if ($diff <= 0) return 0; return ceil($diff / 86400); } // Call this once all your values are set. Returns an associative array containing the number of days // remaining on the source, the number of days to add to the source, the total number of days (source + add) // and a DateTime object representing the value defined as "today" plus the total days to add. public function pro_rate() { $days = $this->diff_days($this->source_expiry, $this->today); $result = array(); $add = $this->add_days(); $total_add = $days + $add; $today = $this->today->format('Y-m-d'); $source = $this->source_expiry->format('Y-m-d'); $dest = $this->destination_expiry->format('Y-m-d'); $result['current_days'] = $days; $result['pro_rate_days'] = $add; $result['total_days'] = $total_add; $tmp = clone $this->today; $result['date'] = $tmp->modify("+{$result['total_days']} days"); return $result; } } $prorate = new Prorate(19990, 19995); $prorate->set_source_expiry('2014-07-23'); $prorate->set_destination_expiry('19-01-2014'); $result = $prorate->pro_rate(); var_dump($result);
Output for 8.3.6
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008914" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.3.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.012175" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.3.4
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.007579" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.3.3
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.007652" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.3.2
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004056" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.3.1
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004035" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.3.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004163" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.18
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009700" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.17
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.007769" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.16
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008940" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.15
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004047" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.14
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004209" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.13
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003734" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.12
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003966" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.11
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004147" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.10
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.005650" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.9
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004039" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.8
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004524" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.7
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003981" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.6
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004041" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004015" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.4
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003920" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.3
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003822" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.2
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003989" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.1
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004304" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.2.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.005021" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.28
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011168" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.6, 8.1.27
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003769" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.23, 8.1.26
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003762" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.25
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003732" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.24
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003909" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.23
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.005137" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.22
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003892" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.21
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004130" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.20
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004115" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.19
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004066" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.18
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004071" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.17
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004179" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.16
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003725" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.15
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003900" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.14
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003886" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.13
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003861" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.12
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003802" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.11
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003791" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.10
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003776" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.9
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003756" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.8
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003674" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.7
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003693" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003759" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.0, 8.1.4
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003827" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.3
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003741" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.2
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003916" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.1.1
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003975" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.30
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003654" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.29
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004873" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.28
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003714" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.27
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003794" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.26
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003272" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.25
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003508" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.24
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.006422" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.22
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003467" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.21
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003547" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.20
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003276" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.19
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004451" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.23, 8.0.18
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003581" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.17
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004519" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.30, 8.0.16
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003545" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.15
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003994" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.14
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.005827" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.13
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(170) ["total_days"]=> float(525) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-09 21:05:23.002298" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } }
Output for 8.0.12
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003887" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.11
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003800" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.10
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003823" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.9
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003888" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.8
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011264" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.7
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003853" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.6
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004077" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004069" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.3
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009788" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.2
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009881" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.1
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004034" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 8.0.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010929" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.33
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.001920" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.32
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003134" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.29
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003351" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.28
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.005067" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.27
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003608" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.26
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(170) ["total_days"]=> float(525) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-09 21:05:23.002191" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } }
Output for 7.4.25
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004187" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.24
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003520" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.22
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008304" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.21
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.007520" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.20
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003863" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.19
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003403" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.16
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011325" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.15
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011911" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.14
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009426" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.13
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010046" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.12
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009425" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.11
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008631" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.10
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010978" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.9
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010641" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.8
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009259" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.7
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008633" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.6
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.000805" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.001194" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.4
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.002912" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.3
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009196" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.4.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.000334" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.33
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(170) ["total_days"]=> float(525) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-09 21:05:23.002550" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } }
Output for 7.3.32
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(170) ["total_days"]=> float(525) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-09 21:05:23.002210" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" } }
Output for 7.3.31
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.004639" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.30
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003377" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.29
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010158" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.28
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010931" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.27
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008649" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.26
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011428" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.25
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.014210" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.24
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011268" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.23
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009082" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.21
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009095" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.20
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009855" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.19
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.011771" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.18
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.006530" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.17
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008670" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.16
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009635" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.12
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.000686" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.1
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.081279" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.3.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.028584" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.33
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009157" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.32
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.013016" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.31
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.012971" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.30
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009293" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.29
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.009521" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.13
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.088679" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.12
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.115654" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.11
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.091574" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.10
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.016426" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.9
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.032397" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.8
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.000264" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.7
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.008625" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.6
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.049267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.159123" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.4
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.039486" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.3
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.023084" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.2
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.031015" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.1
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.037863" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.2.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.000558" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.25
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.068479" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.20
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.002858" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.10
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.003606" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.7
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.002714" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.6
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.010307" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.5
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.006252" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 7.1.0
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.005192" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 5.4.30 - 5.4.45, 5.5.14 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(26) "2015-01-10 23:05:23.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.29, 5.5.0 - 5.5.13
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> object(DateTime)#3 (3) { ["date"]=> string(19) "2015-01-10 23:05:23" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } }
Output for 5.2.0 - 5.2.17
array(4) { ["current_days"]=> float(355) ["pro_rate_days"]=> float(171) ["total_days"]=> float(526) ["date"]=> NULL }
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTime' not found in /in/UjMcK on line 36
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/UjMcK on line 6
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/UjMcK on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/UjMcK on line 6
Process exited with code 255.

preferences:
304.65 ms | 401 KiB | 374 Q