1
Issues / Re: Fatal error: Cannot redeclare str_contains()
https://www.putraritoyan.top/2021/05/source-code-aplikasi-pencatatan-surat.html
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 '';
}