我的数组有一些值
0 => '1'
1 => 'moisturizer'
2 => 'skincare'
我正在尝试将该数组转换为字符串,我目前正在使用json_encode
$value = array_shift( $val_ary ); //val_ary is that array
echo json_encode($value); // This will echo my data like
["1","moisturizer","skincare"]
稍后我想在我的 mysql 数据库表中插入这些值
mysql_query("INSERT INTO TABLE (sno, type, category)
VALUES ('json_encode($value)')");
这应该工作吗?
或者我应该json_decode
在我插入数据库之前?