Server : Apache System : Linux pod-100823:apache2_74:v0.5.7 5.4.0-1138-gcp #147~18.04.1-Ubuntu SMP Mon Oct 7 21:46:26 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33.7 Disable Function : apache_child_terminate,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,disk_free_space,disk_total_space,diskfreespace,dl,exec,fastcgi_finish_request,link,opcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_is_script_cached,opcache_reset,passthru,pclose,pcntl_exec,popen,posix_getpid,posix_getppid,posix_getpwuid,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,realpath_cache_get,shell_exec,show_source,symlink,system Directory : /nas/content/live/attorneyexperi/wp-content/plugins/imagify/inc/functions/ |
<?php defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); /** * Round UP to nearest half integer. * * @since 1.0 * @source http://stackoverflow.com/a/13526408 * * @param int|float|string $number The number to round up. * @return float The formatted number. */ function imagify_round_half_five( $number ) { $number = strval( $number ); $number = explode( '.', $number ); if ( ! isset( $number[1] ) ) { return $number[0]; } $decimal = floatval( '0.' . substr( $number[1], 0, 2 ) ); // Cut only 2 numbers. if ( $decimal > 0 ) { if ( $decimal <= 0.5 ) { return floatval( $number[0] ) + 0.5; } if ( $decimal <= 0.99 ) { return floatval( $number[0] ) + 1; } return 1; } return floatval( $number ); } /** * Convert number of bytes largest unit bytes will fit into. * This is a clone of size_format(), but with a non-breaking space. * * @since 1.7 * @since 1.8.1 Automatic $decimals. * @author Grégory Viguier * * @param int|string $bytes Number of bytes. Note max integer size for integers. * @param int $decimals Optional. Precision of number of decimal places. * If negative or not an integer, $decimals value is "automatic": 0 if $bytes <= 1GB, or 1 if > 1GB. * @return string|false False on failure. Number string on success. */ function imagify_size_format( $bytes, $decimals = -1 ) { if ( $decimals < 0 || ! is_int( $decimals ) ) { $decimals = $bytes > pow( 1024, 3 ) ? 1 : 0; } $bytes = @size_format( $bytes, $decimals ); return str_replace( ' ', ' ', $bytes ); }