Slide 87
Slide 87 text
Removed and/or Deprecated
● mysql, mssql, and ereg extensions are gone
(Use mysqli/pdo, and pcre like you’ve already been doing)
● PHP 4 style constructors deprecated
class Foo { function Foo($bar) { … } }
● Can no longer assign-by-reference with new
$foo =& new Foo();
● Can no longer repeat parameter names
function foo($fizz, $_, $_, $buzz) { … }