How To Fix autoload, could not be loaded - PHP

How To Fix autoload, could not be loaded


<?php
spl_autoload_register(
  function ($pClassName) {
    spl_autoload(strtolower(str_replace("\\", "/", $pClassName)));
  }
);


Learn More :