From 113e1053cc1342148281c3daf9b963d79742ad98 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Sat, 26 Feb 2000 03:57:05 +0000 Subject: [PATCH] small cosmetic change to make the copy example a little easier to read git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20499 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/filesystem.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/filesystem.xml b/functions/filesystem.xml index 6e57bde2f3..5fdca74258 100644 --- a/functions/filesystem.xml +++ b/functions/filesystem.xml @@ -216,7 +216,7 @@ chmod( "/somedir/somefile", 0755 ); // octal; correct value of mode <function>copy</function> example -if (!copy($file, $file.'.bak')) { +if ( !copy($file, $file.'.bak') ) { print("failed to copy $file...<br>\n"); }