3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Horse { // Calculate when the Horse needs feeding public function calculate() { // Check if there is session data about the Horse's feedings if($_SESSION["last_feeding"]) { $lastFeeding = $_SESSION["last_feeding"]; $nextFeeding = $_SESSION["next_feeding"]; } else { $lastFeeding = ""; $nextFeeding = ""; } // Get the current time & create a timestamp $time = new DateTime(); $timestamp = $time->getTimestamp(); // if the Horse has not been fed OR the Horse is hungry & needs to be fed if($lastFeeding == "" || $timestamp >= $nextFeeding) { // Feed the horse some delicious hay! return $this->feeding($lastFeeding, $nextFeeding); } else { // If the Horse is not hungry & and there is still time left before he next needs to eat // Output the session data about the Horse's feedings echo "<h1>Horse does not need to eat</h1>"; // last feeding echo "<h3>Last Ate on:</h3> " . date("H:i:sa d-m-Y", $_SESSION["last_feeding"]) . "<br>"; // next feeding echo "<h3>Next feeding time:</h3> " . date("H:i:sa d-m-Y", $_SESSION["next_feeding"]); } } private function feeding($lastFeeding, $nextFeeding) { // Get the current time & create a timestamp $time = new DateTime(); $lastFeeding = $time->getTimestamp(); // Create a next feeding time $timeModify = $time->modify("+10 minutes"); $nextFeeding = $timeModify->getTimestamp(); // Set the session data $_SESSION["last_feeding"] = $lastFeeding; $_SESSION["next_feeding"] = $nextFeeding; // If the Horse has just eaten and needs to wait ten minutes until his next meal // Output the session data about the Horse's feedings echo "<h1>Horse just ate</h1>"; // last feeding echo "<h3>Last Ate on:</h3> " . date("H:i:sa d-m-Y", $_SESSION["last_feeding"]) . "<br>"; // next feeding echo "<h3>Next feeding time:</h3> " . date("H:i:sa d-m-Y", $_SESSION["next_feeding"]); }}// Start the sessionsession_start();// Calculate if the Horse needs feeding(new Horse)->calculate();
Output for 5.4.0 - 5.4.32
Parse error: syntax error, unexpected end of file, expecting function (T_FUNCTION) in /in/R8Njn on line 1
Process exited with code 255.
Output for 5.1.1 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected $end, expecting T_FUNCTION in /in/R8Njn on line 1
Process exited with code 255.
Output for 5.1.0
Fatal error: fatal flex scanner internal error--end of buffer missed in /in/R8Njn on line 1
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected $, expecting T_FUNCTION in /in/R8Njn on line 1
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected $end, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/R8Njn on line 1
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 $, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/R8Njn on line 1
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/R8Njn on line 1
Process exited with code 255.

preferences:
219.15 ms | 1395 KiB | 123 Q