3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo "URL ENCODE: option=com_reverse&text_str=" . urlencode("String to reverse") . "\n---\n"; echo "URL ENCODE + TWEAK: option=com_reverse&text_str=" . str_replace('+', '%20', urlencode("String to reverse")) . "\n---\n"; echo "RAW URL ENCODE: option=com_reverse&text_str=" . rawurlencode("String to reverse") . "\n---\n"; $queryStringParams = [ 'option' => 'com_reverse', 'text_str' => 'String to reverse' ]; echo "HTTP BUILD QUERY: " . http_build_query($queryStringParams) . "\n---\n"; echo "HTTP BUILD QUERY + TWEAK: " . str_replace('+', '%20', http_build_query($queryStringParams));
Output for git.master, git.master_jit, rfc.property-hooks
URL ENCODE: option=com_reverse&text_str=String+to+reverse --- URL ENCODE + TWEAK: option=com_reverse&text_str=String%20to%20reverse --- RAW URL ENCODE: option=com_reverse&text_str=String%20to%20reverse --- HTTP BUILD QUERY: option=com_reverse&text_str=String+to+reverse --- HTTP BUILD QUERY + TWEAK: option=com_reverse&text_str=String%20to%20reverse

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:
56.37 ms | 402 KiB | 8 Q