PHP code example of app-insights-php / client
1. Go to this page and download the library: Download app-insights-php/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/ */
app-insights-php / client example snippets
$client = new AppInsightsPHP\Client\Factory(
'your_instrumentation_key',
AppInsightsPHP\Client\Configuration::createDefault()
);
$client->trackMessage(...);
$client->trackRequest(...);
// ... all methods available by source package