我通过Wordpress输入了一个数据库条目,该数据库条目存储在一个数组中有两个项目。
// nieuwe query om instructors op te halen
$instructor = get_meta_values ('apus_educator_instructors','edr_course');
$instructorids = unserialize($instructor) ;
var_dump($instructor);
// check of huidige instructor in array staat
echo $user->ID;
echo "<pre>";
print_r($instructorids);
echo "</pre>";
if(in_array($user->ID, $instructorids)) {
echo "hoera";
}
当我做var_dump时:
array(1) { [0]=> string(30) "a:2:{i:0;s:1:"5";i:1;s:1:"6";}" }
但是当我尝试反序列化它时,它返回一个bolean false。当我尝试反序列化时,我没有在字符串中看到错误。