3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Set the Max Size recommended for cache files $max_size = apply_filters('autoptimize_filter_cachecheck_maxsize', 512 * 1024 * 1024)|1; $bytes = $stats[1]|1; // Set the first commons International System of Units (SI) bytes Prefix $si_prefix = array( 'B', 'KB', 'MB', 'GB' ); $class = min( (int) log( $bytes , 1024 ), count( $si_prefix ) - 1 ); // We format the total bytes of cache as appropriate, either in B, KB, MB or GB $size = sprintf( '%1.2f', $bytes / pow( 1024, $class ) ) . ' ' . $si_prefix[ $class ]; // We calculated the percentage of cache used $percentage = ceil( $bytes / $max_size * 100 ); var_dump($class, $size, $percentage);
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
Fatal error: Uncaught Error: Call to undefined function apply_filters() in /in/oel1b:4 Stack trace: #0 {main} thrown in /in/oel1b on line 4
Process exited with code 255.
Output for 5.5.0 - 5.5.36, 5.6.0 - 5.6.28
Fatal error: Call to undefined function apply_filters() in /in/oel1b on line 4
Process exited with code 255.

preferences:
200.81 ms | 402 KiB | 232 Q