ActionScheduler_Compatibility::raise_time_limit()public staticWC 1.0

Attempts to raise the PHP timeout for time intensive processes.

Only allows raising the existing limit and prevents lowering it. Wrapper for wc_set_time_limit(), when available.

Method of the class: ActionScheduler_Compatibility{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = ActionScheduler_Compatibility::raise_time_limit( $limit );
$limit(int)
The time limit in seconds.

ActionScheduler_Compatibility::raise_time_limit() code WC 8.6.1

public static function raise_time_limit( $limit = 0 ) {
	$limit = (int) $limit;
	$max_execution_time = (int) ini_get( 'max_execution_time' );

	// If the max execution time is already set to zero (unlimited), there is no reason to make a further change.
	if ( 0 === $max_execution_time ) {
		return;
	}

	// Whichever of $max_execution_time or $limit is higher is the amount by which we raise the time limit.
	$raise_by = 0 === $limit || $limit > $max_execution_time ? $limit : $max_execution_time;

	if ( function_exists( 'wc_set_time_limit' ) ) {
		wc_set_time_limit( $raise_by );
	} elseif ( function_exists( 'set_time_limit' ) && false === strpos( ini_get( 'disable_functions' ), 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.safe_modeDeprecatedRemoved
		@set_time_limit( $raise_by ); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
	}
}