1
PHP 8 join(): Argument #1 ($pieces) must be of type array, string given
$id = join(',',$val);
##replace with
if (!empty($val)) {
$id = join(',', $val);
}else{
$id = join(',', array_filter(array(@$val)));
}
Interserver | Standard & VPS Cloud Hosting | $2.50 /Month
Flexible VPS hosting platform to deploy your online projects.
Economical and balanced between processor cores, memory and storage
rated 1 times
(1)
(0)
comments: 1 / hits: 2567
/ 2 years ago, sun, may 2, 21, 03:34:47
More From
» PHP
Comments
0
I have the same problem, Hoe someone giving help for it
[#61] Thursday, June 9, 2022, 4:22:53

commented 1 year ago
Ferdinand Juko Randrianirimiadana