Home > Article > Backend Development > What to do if php function reports an error
Solution to php function error: 1. Run the corresponding php file and check the error message; 2. Find the "$name = $_GET("name");" code; 3. Modify "$_GET( "")" is "$_GET[""]"; 4. Save the file and rerun it.
The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.
php function What should I do if I get an error?
php error "Function name must be a string in xxxx"Solution
Problem description:
When writing php code, I mistakenly wrote the code $name = $_GET("name"); when running, it prompts "Function name must be a string"
Solution:
$ The _GET[""] method is written incorrectly. It is written as $_GET(""),
Reason:
is written as $_GET(""), PHP will first think that get() is a method, but there is an extra $ symbol in front of it, and PHP thinks it is a variable, and the variable name cannot be used as the name of the function, so "Function name must be a string" will be thrown.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What to do if php function reports an error. For more information, please follow other related articles on the PHP Chinese website!