Hallo alle miteinander,
ich habe ein Problem mit dar Datums ausgabe pdo prepared statement.
Hier mal mein Code:
Xampp
PHP-Ver.: 8.2.0 - Zend-Ver.: 4.2.0
MySQLi-Ver.: 10.4.27-MariaDB
Funktioniert
Server:
PHP-Ver.: 8.2.4 - Zend-Ver.: 4.2.4
MySQLi-Ver.: 5.7.38-log
Fehlermeldung:
20.03.23 20:23
Fatal error: Uncaught Exception: Failed to parse time string (1679306534) at position 7 (5): Unexpected character in /mnt/web407/b2/50/5943050/htdocs/sites/home.php:40 Stack trace: #0 /mnt/web407/b2/50/5943050/htdocs/sites/home.php(40): DateTime->__construct() #1 /mnt/web407/b2/50/5943050/htdocs/index.php(48): require('...') #2 {main} thrown in /mnt/web407/b2/50/5943050/htdocs/sites/home.php on line 40
Ich weis keinen Rat
Kann mir einer helfen?
Danke im vorraus Loddar1
ich habe ein Problem mit dar Datums ausgabe pdo prepared statement.
Hier mal mein Code:
PHP:
$statement = $con->prepare("SELECT timestamp,onlineseit FROM `cc_online`");
$statement->execute();
while ($row = $statement->fetch())
{
$date = new DateTime($row['timestamp']); // line 40
$dateFormatted = $date->format('d.m.y H:i');
echo $dateFormatted;
}
PHP-Ver.: 8.2.0 - Zend-Ver.: 4.2.0
MySQLi-Ver.: 10.4.27-MariaDB
Funktioniert
Server:
PHP-Ver.: 8.2.4 - Zend-Ver.: 4.2.4
MySQLi-Ver.: 5.7.38-log
Fehlermeldung:
20.03.23 20:23
Fatal error: Uncaught Exception: Failed to parse time string (1679306534) at position 7 (5): Unexpected character in /mnt/web407/b2/50/5943050/htdocs/sites/home.php:40 Stack trace: #0 /mnt/web407/b2/50/5943050/htdocs/sites/home.php(40): DateTime->__construct() #1 /mnt/web407/b2/50/5943050/htdocs/index.php(48): require('...') #2 {main} thrown in /mnt/web407/b2/50/5943050/htdocs/sites/home.php on line 40
Ich weis keinen Rat
Kann mir einer helfen?
Danke im vorraus Loddar1