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
This commit is contained in:
Sterling Hughes 2000-02-26 03:57:05 +00:00
parent 8eaf0dfc82
commit 113e1053cc

View file

@ -216,7 +216,7 @@ chmod( "/somedir/somefile", 0755 ); // octal; correct value of mode
<example>
<title><function>copy</function> example</title>
<programlisting role="php">
if (!copy($file, $file.'.bak')) {
if ( !copy($file, $file.'.bak') ) {
print("failed to copy $file...&lt;br>\n");
}
</programlisting>