使用PHP連線InfluxDB的範例碼如下:
<?php
// InfluxDB 連線設定
$host = 'localhost';
$port = 8086;
$database = 'your_database';
$username = 'your_username';
$password = 'your_password';
// 連線到 InfluxDB
$influx = new InfluxDB\Client($host, $port, $username, $password, $database);
// 查詢資料
$query = 'SELECT * FROM your_measurement';
// 發送查詢
$result = $influx->query($query);
// 取得查詢結果
$points = $result->getPoints();
// 輸出資料
foreach ($points as $point) {
echo 'Time: ' . $point['time'] . ', Value: ' . $point['value'] . PHP_EOL;
}
?>
請確保你已經安裝InfluxDB的PHP客戶端程式庫。在這個例子中,你需要替換 $host
、$port
、$database
、$username
和 $password
等變數為你實際的設定。