Updated die as per bug #3546, would someone close that bug for me.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20109 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sterling Hughes 2000-02-21 15:00:20 +00:00
parent f9799e4dc0
commit 3a5fff993c

View file

@ -193,7 +193,7 @@ echo CONSTANT; // outputs "Hello world."
<?php
$filename = '/path/to/data-file';
$file = fopen ($filename, 'r')
or die "unable to open file ($filename)";
or die("unable to open file ($filename)");
?>
</programlisting>
</example>