The DHLTracker PHP package provides an easy-to-use, object-oriented interface for tracking shipments using the DHL API. It simplifies the process of sending requests to DHL and parsing the responses. This package is particularly useful for developers working on logistics, e-commerce, and any application where tracking DHL shipments is required.
- Simple Tracking: Track DHL shipments using just the tracking number.
- API Key Integration: Securely integrates with your DHL API key for authenticated requests.
- Error Handling: Implements error handling for robust application development.
- Flexible Responses: Retrieve tracking information in a structured format, making it easy to use within your application.
- PSR-4 Autoloading: Conforms to PSR-4 standards for compatibility with modern PHP applications.
The DHLTracker PHP package can be installed using Composer. Run this command:
composer require dhltracker/dhltracker
To track a shipment, you will need to create a DHLTracker
object and pass in your DHL API key and the tracking number. You can then call the trackShipment()
method and this will return a DHLTrackerResponse
object, which contains the tracking information.
<?php
require_once __DIR__ . '/vendor/autoload.php';
use DHLTracker\DHLTracker;
// Instantiate the DHLTracker class with your DHL tracking number and API key:
$tracker = new DHLTracker("YOUR_TRACKING_NUMBER", "YOUR_DHL_API_KEY");
// Then, use the trackShipment method to get the tracking information:
$response = $tracker->trackShipment();
echo $response;
?>
- PHP 7.4 or higher
- Composer
- DHL API Key
- cURL extension for PHP
Contributions are welcome! Please see CONTRIBUTING.md for more details.
This package is licensed under the MIT License