Skip to content

Commit

Permalink
Create example.php
Browse files Browse the repository at this point in the history
Beispiel wie man die Api Aufruft
  • Loading branch information
drexlma authored Jun 7, 2023
1 parent 7299e8f commit 19054e0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions example.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

require('fonial.class.php');


$Fonial = new Fonial();
echo '<h2>Geräte</h2>';
print_r($Fonial->deviceGet());


echo '<h2>Nummern</h2>';
print_r($Fonial->numbersGet());


echo '<h2>Einzelverbindungsnachweises</h2>';
print_r($Fonial->evnGet( date('Y-m-d h:i:s',time()-(60*60*24*5)), date('Y-m-d h:i:s')) );

0 comments on commit 19054e0

Please sign in to comment.