Lines Matching refs:link
15 /* Delete link files - soft and hard links */
25 // link name used here
28 echo "-- Testing unlink() on soft link --\n";
29 // create soft link
31 // unlink soft link
33 var_dump( file_exists($linkname) ); // confirm link is deleted
35 echo "-- Testing unlink() on hard link --\n";
36 // create hard link
37 var_dump( link($filename, $linkname) ); // expected: true
38 // delete hard link
40 var_dump( file_exists($linkname) ); // confirm link is deleted
50 -- Testing unlink() on soft link --
54 -- Testing unlink() on hard link --