看下面的代码:
<?php
function getmangainfo($teamname)
{
$rValue = "";
$lValue = "";
$query = ("SELECT pic, mn_title FROM table Where mn_team LIKE '%" . $teamname . "%' Limit 0,4 ");
$row_data = mysql_query($query);
while ($row_data = mysql_fetch_array($row_data)) {
$rValue = $row['pic'];
$lValue = $row['mn_title'];
return "<a class='linksrepeated' href='" . $ABSPATH . "/" . $lValue . "/'> <img src='" . $rValue . "'/></a>";
}
}
这个函数没有返回任何东西!我在想这是因为 return 语句在 while 循环内。我尝试了很多事情,希望它能返回 4 个结果,但什么也没发生。SQL 查询工作 100%。问题出在我的功能上。请让我知道出了什么问题以及如何解决。