usersim 感兴趣我如何从我的 mysql 数据库中选择一个文本字段,我有一个名为 users 的表,其中包含一个名为“profile_fields”的文本字段,其中存储了附加用户信息。我如何在 php 中访问它并删除它?我想删除无效的人。
PHP 代码
<?php
//Working connection made before assigned as $connection
$time = time();
$query_unactive_users = "DELETE FROM needed WHERE profile_fields['valid_until'] < $time"; //deletes user if the current time value is higher then the expiring date to validate
mysqli_query($connection , $query_unactive_users);
mysqli_close($connection);
?>
在 phpmyadmin 中,该字段显示(从随机用户行中选择):
a:1:{s:11:"valid_until";i:1370695666;}
“ ... WHERE profile_fields ['valid_until'] ...”是正确的方法吗?