Skip to content

Commit a1d7ec1

Browse files
committed
Update example.php
Added example string to explain new getall() function
1 parent 8d962fd commit a1d7ec1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bridge/php/example.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
$client = new bridgeclient();
55

66
$client->put("D13","Test");
7-
$test= $client->get("D13");
7+
8+
$test = $client->get("D13");
89
echo $test;
10+
11+
$all = $client->getall();
12+
$all = json_decode($all, true);
13+
print_r($all);
914
?>
1015

0 commit comments

Comments
 (0)