Server IP : 209.38.156.173 / Your IP : 216.73.216.128 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/cwd/plugins/jetpack/jetpack_vendor/automattic/jetpack-status/src/ |
Upload File : |
<?php /** * An errors utility class for Jetpack. * * @package automattic/jetpack-status */ // phpcs:disable WordPress.PHP.IniSet.display_errors_Disallowed // phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged // phpcs:disable WordPress.PHP.DevelopmentFunctions.prevent_path_disclosure_error_reporting // phpcs:disable WordPress.PHP.DiscouragedPHPFunctions.runtime_configuration_error_reporting namespace Automattic\Jetpack; /** * Erros class. * * @deprecated since 3.2.0 */ class Errors { /** * Catches PHP errors. Must be used in conjunction with output buffering. * * @deprecated since 3.2.0 * @param bool $catch True to start catching, False to stop. * * @static */ public function catch_errors( $catch ) { _deprecated_function( __METHOD__, '3.2.0' ); static $display_errors, $error_reporting; if ( $catch ) { // Force error reporting and output, store original values. $display_errors = @ini_set( 'display_errors', 1 ); $error_reporting = @error_reporting( E_ALL ); if ( class_exists( 'Jetpack' ) ) { add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); } } else { // Restore the original values for error reporting and output. @ini_set( 'display_errors', $display_errors ); @error_reporting( $error_reporting ); if ( class_exists( 'Jetpack' ) ) { remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 ); } } } }