Lines Matching refs:path
2 Test opendir() function : usage variations - different data types as $path arg
11 /* Prototype : mixed opendir(string $path[, resource $context])
17 * Pass different data types as $path argument to opendir() to test behaviour
24 $path = dirname(__FILE__) . "/opendir_variation1";
25 mkdir($path);
34 var $path;
35 function __construct($path) {
36 $this->path = $path;
39 return $this->path;
45 $path
51 // unexpected values to be passed to $path argument
83 /*19*/ "$path",
88 /*22*/ new classA($path),
116 $path = dirname(__FILE__) . "/opendir_variation1";
117 rmdir($path);
219 Warning: opendir() expects parameter 1 to be a valid path, array given in %s on line %d
246 Warning: opendir() expects parameter 1 to be a valid path, resource given in %s on line %d