$row = mysql_fetch_array($sql);
statusColor($row['status']);
function statusColor($x) {
if (stripos($x, '2nd') == true) {
echo "Best";
}
}
注意:用於提取的數據將返回'2nd Shift'或'3rd Shift'。PHP函數無法返回值
上面的代碼不返回任何內容。只是空白。讚賞如果你能幫我解決問題。
我在PHP 5.3.28上運行。