3v4l.org

run code in 300+ PHP versions simultaneously
<?php $bytes = 0|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 git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $max_size in /in/9lodG on line 11 Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/9lodG:11 Stack trace: #0 {main} thrown in /in/9lodG on line 11
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
67.08 ms | 401 KiB | 8 Q