PHP code example of php-core / smspva
1. Go to this page and download the library: Download php-core/smspva library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php-core / smspva example snippets
// / Replace 'YOUR_API_KEY' with your actual API key from SMS PVA.
$apiKey = 'YOUR_API_KEY';
try {
$api = new PHPCore\SmsPva\Api($apiKey);
// Example: Getting a number for a specific service and country.
$service = 'tg'; // Service code for Telegram (tg)
$country = 'RU'; // Country code for Russia (RU)
$response = $api->getNumber($service, $country);
// Check the response to see if the request was successful.
if (isset($response['number'])) {
$number = $response['number'];
$tzid = $response['id'];
echo "Received number: $number\n";
// Perform your actions with the received number.
// ...
} else {
echo "Error: " . $response['error'] . "\n";
}
} catch (Exception $e) {
echo "Error: " . $e->getMessage() . "\n";
}