PHP code example of omaralalwi / laravel-api-helpers
1. Go to this page and download the library: Download omaralalwi/laravel-api-helpers 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/ */
omaralalwi / laravel-api-helpers example snippets
$apiVersion = get_api_v();
// Check if the current API version is 3
if (is_api_v(3)) {
echo "This is API version 3. ✅";
} else {
echo "This is not API version 3. ❌";
}
// Verify that the API version is at least version 4
if (api_v_at_least(4)) {
echo "API version is 4 or higher. 🚀";
} else {
echo "API version is below 4. Please upgrade.";
}
if (is_api_request()) {
echo "This is an API request. 🌐";
} else {
echo "This is not an API request.";
}