Pesan error "PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; xxx has a deprecated constructor"
Solusi:
Pada
class example{
function example(){
Ubah Menjadi:
class example{
function __construct(){
Mengatasi PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP
- 5 Users Found This Useful
Related Articles
Powered by WHMCompleteSolution