Print PHP version

This commit is contained in:
ruan 2015-10-03 12:08:40 +02:00
parent 9146b9a0d8
commit 153b8fe2c7

View File

@ -101,6 +101,10 @@ final class Settings {
if ($driver === 'pgsql') { if ($driver === 'pgsql') {
$this->conn->query("SET NAMES 'UTF8';"); $this->conn->query("SET NAMES 'UTF8';");
} }
if ($this->debug_mode > 0) {
echo PHP_VERSION;
}
} }
} }
} }