YouTubeでこのphpacademyチュートリアルに従いましたが、echoで印刷するキーワードを取得できません。代わりに私は得る:
`keywords` LIKE '%keyword%'
WTH?コードは逐語的にコピーされています。プラットフォームの問題である可能性がありますか?
このステートメント->$where .= "
キーワードに問題がありLIKE '%keyword%'";
ますか?
<?php
include 'db.inc.php';
function search_results($keywords) {
$returned_results=array();
$where="";
$keywords=preg_split('/[\s]+/', $keywords);
$total_keywords = count($keywords);
foreach($keywords as $key=>$keyword){
$where .= "`keywords` LIKE '%keyword%'"; // Where's the issue?
if($key != ($total_keywords-1)){
$where .= " AND ";
}
}
echo $where;
}
?>