3v4l.org

run code in 300+ PHP versions simultaneously
<?php $modes = [ 'r+', 'w', 'w+', 'a', 'a+', 'x', 'x+', 'c', 'c+', 'r+b', 'wb', 'w+b', 'ab', 'a+b', 'xb', 'x+b', 'cb', 'c+b', 'r+t', 'wt', 'w+t', 'at', 'a+t', 'xt', 'x+t', 'ct', 'c+t']; foreach($modes as $mode) { $stream = fopen('php://memory', $mode); $stats = stream_get_meta_data($stream); echo $mode.': '.$stats['mode'].PHP_EOL; }

preferences:
52.78 ms | 402 KiB | 5 Q