Untuk mengatasi project file PHP Rad waktu upload ke Hosting atau di xamp ada keterangan ” fatal error: cannot redeclare str_contains() in c:\xampp\htdocs\aplikasi\helpers\functions.php on line 524″ ketika dijalankan. seperti gambar dibawah ini.
Dan untuk mengatasi permasalahan tersebut bagi pengguna yang menggunakan web server versi 8 atau php 8 silahkan ubah file yang ada di folder
“home/xxxxxx/public_html/aplikasi/helpers/Functions.php on line 524″kemudian baris code pada baris 524
function str_contains($needle, $haystack) { return strpos($haystack, $needle) !== false; }
dirubah menjadi
error_reporting(0); if (strpos($haystack, $needle) !== false) { echo ”;
GANTILAH KODE 524 sampai dengan kode 528 menjadi :
524 error_reporting(0);
525 if (strpos($haystack, $needle) !== false)
526 {
527 return strpos($haystack, $needle) !== false;
528 }
error_reporting(0);
if (strpos($haystack, $needle) !== false)
{
return strpos($haystack, $needle) !== false;
}
Mudah-mudahan artikel sedikit ini membantu dalam kasus seperti ini.
SUMBER ASLI :
Fatal error: Cannot redeclare /helpers/Functions.php on line 524 di PHP RAD Clasic - BanyuADVertising
0 komentar:
Posting Komentar
Masukan Komentar yang sesuai jika tidak, maka akan dianggap spam.