我试图在While循环中过滤一些条目。我正在尝试使用strpos
函数,不幸的是,当我使用变量作为针时,我没有得到结果。
没有结果:
$tra = strpos($HRreq, $entry_type)
结果:$tra = strpos($HRreq, "string");
但是,我需要它在while循环中变量。
$select_exec = odbc_exec($amos_db,$select_personnel);
while ($row = odbc_fetch_array($select_exec)){
$username = $row['user_sign'];
$entry_type = $row['entry_type'];
$fullname1 = $row['lastname'] . $row['firstname'];
$fullname = trim(preg_replace('/ +/', ' ', preg_replace('/[^A-Za-z0-9 ]/', ' ', urldecode(html_entity_decode(strip_tags($fullname1))))));
$userno = $row['employee_no_i'];
$tra = strpos($HRreq, "$entry_type");
echo $entry_type ." = ". $tra;
}
我添加了部分代码,因为代码长度超过500行。我希望这足以让我了解我想要实现的目标
答案 0 :(得分:0)
我发现数据库在变量后面带有空格。我添加了trim()
,问题解决了。这是一个愚蠢的错误。