mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
16 lines
384 B
PHP
16 lines
384 B
PHP
--TEST--
|
|
Test copy() function: error conditions
|
|
--FILE--
|
|
<?php
|
|
echo "*** Testing copy() function: error conditions --\n";
|
|
/* Invalid args */
|
|
var_dump( copy("/no/file", "file") );
|
|
|
|
echo "*** Done ***\n";
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing copy() function: error conditions --
|
|
|
|
Warning: copy(/no/file): Failed to open stream: No such file or directory in %s on line %d
|
|
bool(false)
|
|
*** Done ***
|