PHP code example of hexboy / laravel-woocommerce-api-client
1. Go to this page and download the library: Download hexboy/laravel-woocommerce-api-client 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/ */
hexboy / laravel-woocommerce-api-client example snippets
use Woocommerce;
return Woocommerce::get('orders');
use Woocommerce;
$data = [
'status' => 'completed',
'after' => '2019-01-14T00:00:00'
]
];
$result = Woocommerce::get('orders', $data);
foreach($result['orders'] as $order)
{
// do something with $order
}
// you can also use array access
$orders = Woocommerce::get('orders', $data)['orders'];
foreach($orders as $order)
{
// do something with $order
}
use Woocommerce;
// assuming we have 474 orders in pur result
// we will request page 5 with 25 results per page
$params = [
'per_page' => 25,
'page' => 5
];
Woocommerce::get('orders', $params);
use Woocommerce;
// first send a request
Woocommerce::get('orders');
// get the request
Woocommerce::getRequest();
// get the response headers
Woocommerce::getResponse();
// get the total number of results
Woocommerce::getResponse()->getHeaders()['X-WP-Total']