Lines Matching refs:realpath
2 Test realpath() function: usage variation
11 /* Prototype: string realpath ( string $path );
17 echo "*** Testing realpath(): usage variations ***\n";
22 echo "\n*** Testing realpath() with filename stored inside a object ***\n";
37 var_dump( realpath($obj1->filename) );
38 var_dump( realpath($obj2->filename) );
40 echo "\n*** Testing realpath() with filename stored in an array ***\n";
46 var_dump( realpath($file_arr[0]) );
47 var_dump( realpath($file_arr[1]) );
49 echo "\n*** Testing realpath() with filename as empty string, NULL and single space ***\n";
65 var_dump( realpath($file_string[$loop_counter]) );
79 *** Testing realpath(): usage variations ***
81 *** Testing realpath() with filename stored inside a object ***
85 *** Testing realpath() with filename stored in an array ***
89 *** Testing realpath() with filename as empty string, NULL and single space ***