Lines Matching refs:unlink
2 Test unlink() function : usage variations - unlink links
11 /* Prototype : bool unlink ( string $filename [, resource $context] );
21 echo "*** Testing unlink() on soft and hard links ***\n";
28 echo "-- Testing unlink() on soft link --\n";
31 // unlink soft link
32 var_dump( unlink($linkname) ); // expected: true
35 echo "-- Testing unlink() on hard link --\n";
39 var_dump( unlink($linkname) ); // expected: true
43 var_dump( unlink($filename) );
49 *** Testing unlink() on soft and hard links ***
50 -- Testing unlink() on soft link --
54 -- Testing unlink() on hard link --