调用

WBOY
Release: 2016-06-23 13:59:49
Original
964 people have browsed it

$resultStr = _response_text($postObj,$contentStr); 写上去可以  但是调用数据库$resultStr = $rows["softsize"]; 却不行 softsize数据库里的值就是_response_text($postObj,$contentStr);  为什么不行呢??


回复讨论(解决方案)

没有人去解释 _response_text($postObj,$contentStr); 当然就不行
$resultStr = eval("return {$rows["softsize"]}"); 
就可以了

没有人去解释 _response_text($postObj,$contentStr); 当然就不行
$resultStr = eval("return {$rows["softsize"]}"); 
就可以了

试了试 不行啊 
$resultStr = _response_text($postObj,$contentStr); 整句写进softsize数据库里的值里 然后$rows["softsize"] 也不行

没有人去解释 _response_text($postObj,$contentStr); 当然就不行
$resultStr = eval("return {$rows["softsize"]}"); 
就可以了

$resultStr = eval("return {$rows["softsize"]}");  不行啊 老大 为嘛


没有人去解释 _response_text($postObj,$contentStr); 当然就不行
$resultStr = eval("return {$rows["softsize"]}"); 
就可以了

$resultStr = eval("return {$rows["softsize"]}");  不行啊 老大 为嘛

public function handleText($postObj)    {        $keyword = trim($postObj->Content);        if(!empty( $keyword ))        {			$sql="select * from wsc_download  where isgood='2'";		$result=mysql_query($sql);		while($rows=mysql_fetch_assoc($result))		switch ($keyword)						{							case "byd":		$record[]=array(					'title' =>$rows["title"],					'description' =>$rows["notice"],					'picUrl' => $rows["showpic"],					'url' =>$rows["downurl"]			);						$contentStr = $rows["hits"];			            $resultStr = eval("return {$rows["softsize"]}");  			  break;			         }echo $resultStr;}		    }
Copy after login

eval("return {$rows[‘softsize]}");试试

 eval("return {$rows['softsize']}");

 eval("return {$rows['softsize']}");

这个试了 不行..

 eval("return  {$rows['softsize'] }"); {}去掉试试

 eval("return  {$rows['softsize'] }"); {}去掉试试

显示语法错误

eval 的参数必须是合法的 php 语句

eval 的参数必须是合法的 php 语句  感谢你们啦! 自己用了个比较贱的方法解决了.. 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template