summaryrefslogtreecommitdiff
path: root/ext/standard/tests/streams/opendir-001.phpt
blob: 28fa43cf2683e1a59c9cd5d19d3243a138ebb73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
opendir() with 'ftp://' stream. 
--SKIPIF--
<?php
if (array_search('ftp',stream_get_wrappers()) === FALSE) die("skip ftp wrapper not available.");
if (!function_exists('pcntl_fork')) die("skip pcntl_fork() not available.");
?>
--FILE--
<?php

require __DIR__ . "/../../../ftp/tests/server.inc";

$path="ftp://localhost:" . $port."/bogusdir";

var_dump(opendir($path));
?>
==DONE== 
--EXPECTF--
Warning: opendir(ftp://localhost:%d/bogusdir): failed to open dir: FTP server reports 250 /bogusdir: No such file or directory
 in %s on line %d
bool(false)
==DONE==