wpsc_create_stop_preload_flag()WPSCache 1.0

The preload process checks for a file called stop_preload.txt and will stop if found. This function creates that file.

No Hooks.

Return

null. Nothing (null).

Usage

wpsc_create_stop_preload_flag();

wpsc_create_stop_preload_flag() code WPSCache 1.12.4

function wpsc_create_stop_preload_flag() {
	global $cache_path;
	// phpcs:ignore -- WordPress.WP.AlternativeFunctions.file_system_read_fopen WordPress.PHP.NoSilencedErrors.Discouraged
	$fp = @fopen( $cache_path . 'stop_preload.txt', 'w' );
	// phpcs:ignore -- WordPress.WP.AlternativeFunctions.file_system_operations_fclose WordPress.PHP.NoSilencedErrors.Discouraged
	@fclose( $fp );
}