Anche se la maggior parte del codice PHP 5 esistente dovrebbe funzionare senza modifiche, occorre fare attenzione ai seguenti cambiamenti imcompatibili col codice precedente:
NULL
quando riceve
argomenti non compatibili a partire da PHP 5.2.1.
TRUE
a partire da PHP 5.2.1.
TRUE
a partire da PHP 5.2.1.
FALSE
inaspettato.
Dal PHP 5.2.0, questa operazione crea un E_WARNING
,
come in tutte le altre situazioni in cui viene eseguita una divisione per 0.
<?php
print 10 % 0;
/* Warning: Division by zero in filename on line n */
?>
<?php
class foo {}
$foo = new foo;
print $foo;
/* Catchable fatal error: Object of class foo could
not be converted to string in filename on line n */
?>
<?php
class foo {
public function __toString() {
throw new Exception;
}
}
try {
print new foo;
/* Fatal error: Method foo::__toString() must
not throw an exception in filename on line n */
} catch(Exception $e) {}
?>
<?php
abstract class foo {
abstract static function bar();
/* Strict Standards: Static function foo::bar()
should not be abstract in filename on line n */
}
?>
<?php
/* when allow_url_include is OFF (default) */
include "data:;base64,PD9waHAgcGhwaW5mbygpOz8+";
/* Warning: include(): URL file-access is disabled
in the server configuration in filename on line n */
?>
FALSE
false quando
le restrizioni openbase_dir sono violate.