Home > Article > Backend Development > The difference between use and require in php
The difference between use and require in PHP
1. require is an imported file, but if require cannot find the file, it will directly error and the program Exit;
2. Use uses a namespace, which is equivalent to the import package in java. The premise is that the files in the package need to be required or included in advance. When using use, you need to write the full space name and class name later.
For example: namespace Person1/Person; where Person1 is the namespace and Person is the class name.
Recommended tutorial: PHP video tutorial
The above is the detailed content of The difference between use and require in php. For more information, please follow other related articles on the PHP Chinese website!