On Mon, Oct 07, 2002 at 04:37:49AM +0200, Melvyn Sopacua wrote:
> Whether the function should make an effort and emit a warning for these
> systems is open to debate.
IMO it's good that this function isn't available on Windows - it makes
no sense there anyway. I'll fix run-tests.php in a moment.
Hey David,
[EMAIL PROTECTED] ~/cvs/php4/ext/standard
$ grep -2 is_executable ./php_filestat.h
PHP_FUNCTION(is_readable);
#ifndef PHP_WIN32
PHP_FUNCTION(is_executable);
#endif
PHP_FUNCTION(is_file);
Seems it is disabled for WIN32, which makes sence, since every file on a
windows
machine, is by d
hi,
i'm trying to get the php tests to run on my windows 2k machine, and having
a lot of trouble. i seem to fail at this line:
if (@!is_executable($php)) {
error("invalid PHP executable specified by TEST_PHP_EXECUTABLE = " .
$php);
}
I removed the '@' to see what was happening,