We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 11e253b + 59e6d7e commit 986610aCopy full SHA for 986610a
examples/qetag.php
@@ -0,0 +1,10 @@
1
+<?php
2
+require_once __DIR__ . '/../autoload.php';
3
+use Qiniu\Etag;
4
+
5
+list($etag, $err) = Etag::sum(__file__);
6
+if ($err == null) {
7
+ echo "Etag: $etag";
8
+} else {
9
+ var_dump($err);
10
+}
0 commit comments