The below code is not printing anything in the browser. actually, It should show the header menu. if I remove ob_start(); and ob_end_clean() at least its printing menu without CSS.
// Turn on output buffering HTML
ob_start();
echo preg_replace( '/\n|\t/i', '', implode( '' , $wr_nitro_header_html ) );
WR_Nitro_Header_Builder::prop( 'html', ob_get_contents() );
ob_end_clean()
update: same code is working fine for php7.4 but php8.1 is not working