यदि आपको इस डेटा को in_array
. में लोड करने की आवश्यकता है , तो यह एक सरणी रूप में होना चाहिए, आप एक json स्ट्रिंग का उपयोग नहीं कर सकते।
$stmt = $dbh->prepare('SELECT DISTINCT cohort_id FROM table_cohorts');
$stmt->execute();
$cohort_ids = array();
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$cohort_ids[] = $row['cohort_id'];
}
if(in_array($user_input, $cohort_ids)) {
// do the rest
} else {
// oops your input is not any of those
}