Home>Article>Backend Development> The difference between php use and include
The difference between use and include in PHP
1. Include is an import file. If the file cannot be found, include will report a warning and continue. implement.
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, you need to write the full space name and class name later, such as the 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 php use and include. For more information, please follow other related articles on the PHP Chinese website!