$blocked_list = array(';', '/*','---','*','\*','\'','select','union','join','where','insert','like','drop','and','have','alter','0x','"','\'','location','LOCATİON','LOCATION','refresh','script','frame','iframe','İFRAME','IFRAME','\\n');
$check_array = [
[
'key' => 'select',
'lang' => [
'en' => 'Select',
'tr' => 'Sec'
]
]
];
$new_tk = str_ireplace($blocked_list, '', $check_array);
It gives me the following error as a result.
"Warning: Array to string conversion in /var/www/...." How can I str_replace the array inside the array as in the $array_check variable?