3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Textlocal account details $username = urlencode('youremail@address.com'); $hash = urlencode('Your API hash'); // Get this when logged in at https://control.txtlocal.co.uk/docs/ // Message details $numbers = urlencode(447123456789,447987654321); $sender = urlencode('Textlocal'); $message = urlencode('This is your message'); // Prepare data for POST request $data = 'username=' . $username . '&hash=' . $hash . '&numbers=' . $numbers . "&sender=" . $sender . "&message=" . $message; // Send the GET request with cURL $ch = curl_init('https://api.txtlocal.com/send/?' . $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); // Process your response here echo $response; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: urlencode() expects exactly 1 argument, 2 given in /in/o4UA6:7 Stack trace: #0 /in/o4UA6(7): urlencode(447123456789, 447987654321) #1 {main} thrown in /in/o4UA6 on line 7
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:
43.4 ms | 401 KiB | 8 Q