问题:在写php代码的时候,误将代码写 $name = $_GET("name");运行的时候,提示" Function name must be a string"

解决:$_GET[""]方法写错了.写成了$_GET(""),

原因: 写成$_GET(""),php首先会认为get()是一个方法,但是前面又多了$符号,php又认为这是一个变量,而变量名不能作为function的名字,所有会抛出"Function name must be a string"。
--------------------- 
作者:蜡笔love小新 
来源:CSDN 
原文:https://blog.csdn.net/yellowmushroom/article/details/80867357 
版权声明:本文为博主原创文章,转载请附上博文链接!