This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

14
test3.php Normal file
View file

@ -0,0 +1,14 @@
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://192.168.0.123:8080/v1/sms/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
echo "<pre>"; print_r($output); echo "</pre>";
//-----------------------------------------------------------
curl_close($ch);
?>