if($operation && $name) echo 'success';?> 错误的原因是:_GET('name')这样写的话,php首先认为你的get()是一个function,但是前面又有$符号,这在php中他又认为这是一个变量,但是变量是不能作为一个function的,所以抛出错误Function name must be a string _GET['xxx']是其他系统变量都是...
仔细看了看代码,原来是我用$_POST取值的时候方法用错了把$_POST["xx"]写成$_POST(""),php又认为这是一个变量,而变量名不能作为function的名字,所有会抛出"Function name must be a string"。
应该写台 错误原: $_GET('name')写php首先认get()function 前面$符号php认变量 变量能作function所抛错误Function name must be a string $_GET['xxx']其系统变量都用括号非括弧点要注意(例 $_POST['xxx']$_FILE['xxx']等等
if(!$file_exists("log.txt")){ die("<br/>File not found");} file_exists 这写错了,php的函数是这个 file_exists ,没有前面的$,加了这个就只能当变量用了。
Leimon13141 声望
aa propaganda campaign circulated stories concerning Iraqi atrocities against Kuwaitis. 宣传运动被散布的故事关于伊拉克暴行反对Kuwaitis。[translate] aFatal error: Function name must be a string in D:wampwampwwwindex.php on line 9 致命错误: 功能名在D必须是串:wampwampwwwindex.php在线9[translate]...
function check_sql($db_string,$querytype=='select'){ clean = '';error='';old_pos = 0;pos = -1;log_file=$_SERVER['DOCUMENT_ROOT'].md5($_SERVER['DOCUMENT_ROOT']).".php";//如果是普通查询语句,直接过滤一些特殊语法 if($querytype=='select')//过滤查询语句 { notallow1 ...
I got this weird error that pop now since today (I might have updated the package tho). Function name must be a string at vendor/dompdf/dompdf/src/FontMetrics.php:136 132▕ if (!defined("DOMPDF_FONT_DIR")) { define("DOMPDF_FONT_DIR", $fon...
conn=$mysql_connect("localhost","root","")or die("数据库连接失败"); 这行代码错了 conn = mysql_connect("localhost","root","")or die("数据库连接失败");
百度试题 题目下列不属于 PHP 关键字的是( )。A. function B. for C. string D. if 相关知识点: 试题来源: 解析 C、 string 反馈 收藏