import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-file / symlink_link_linkinfo_is_link_variation3.php.expectf
blob86228fc764920d2fb5057cf99b514ae8e1881da3
1 *** Accessing and updating data of file through soft link ***
2 bool(true)
4 -- Access data of the file through the soft link --
5 string(80) "texttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttext"
7 -- Check size of soft link and file --
8 int(80)
9 int(80)
11 Soft link size remains same 
13 -- Updating file with data through soft link --
14 string(91) "texttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttextHello World"
16 -- Check size of soft link and file --
17 int(91)
18 int(91)
20 Soft link size remains same 
22 -- Updating file with data and check data through soft link --
23 string(11) "Hello World"
25 -- Check size of soft link and file --
26 int(11)
27 int(11)
29 Soft link size remains same 
30 Done