Skip to content

Tag: autoload

PHP classes in namespaces not found

I tried to load a utility class to my main class with a namespace but everytime I try to run it it seems to not be working as in not finding the class. The error I got is: The first array is for me to check what files is included using the get_included_file() function and I have loaded my autoload.php

PHP autoloading namespace on xampp

I am trying to autoload php class under namespace on xampp. But for some reason it cannot find class under its absolute path. here is my autoloader: here is my class This is my file system: This i error i am getting: Warning: require_once(C:/xampp/htdocs/app/admin/modules/smartForm/smartForm.php): Failed to o…

PHP autoload with namespaces do not load file

I have an issue with my autoloader and namespaces. Below the autoloader Below the index file The file for the class Person is saved in the directory root->include->Person I used the namespace in the class file like this If I visit the index file in the browser it returns ‘Class file not found&#821…

How to access packages in vendor directory

Calling any package from the vendor directory structure within any CakePHP controller works, as the composer set up everything correctly. For example this MCVE from https://github.com/giggsey/libphonenumber-for-php#quick-examples When I run the equal code directly in webroot/sample.php so it fails : Got error…