XenForo
Administrative
- Thread starter
- Admin
- #1
I can do
select * from table where colum in ('value1','value2');
=
->where('colum', ['value1','value2'])
but how I can use an array instead a list like
$ar[0] = value1;
$ar[1] = value2;
->where('colum', [$ar])
?
ادامه مطلب...
select * from table where colum in ('value1','value2');
=
->where('colum', ['value1','value2'])
but how I can use an array instead a list like
$ar[0] = value1;
$ar[1] = value2;
->where('colum', [$ar])
?
ادامه مطلب...