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.
1 parent 93908d7 commit b40f9caCopy full SHA for b40f9ca
CopyKitty.php
@@ -0,0 +1,15 @@
1
+<?php
2
+/*
3
+* @Software: CopyKitty
4
+* @Author: phpjsnerd
5
+* @Email: phpjsnerd@gmail.com
6
+*/
7
+if(!@copy('http://example.com/archive.zip','archive.zip'))
8
+{
9
+ $errors= error_get_last();
10
+ echo "COPY ERROR: ".$errors['type'];
11
+ echo "<br />\n".$errors['message'];
12
+} else {
13
+ echo "File copied from remote!";
14
+}
15
+?>
CopyKittyHash.php
@@ -0,0 +1,9 @@
+* @Software: CopyKittyHash
+$hasho=hash_file('SHA384', 'archive.zip');
+echo $hasho;
0 commit comments