fix doc example screen output

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@228282 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Greg Beaver 2007-01-28 05:37:51 +00:00
parent d60ca4547e
commit aaeddc313f

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<refentry id="function.Phar-commitWrite">
<refnamediv>
<refname>Phar-&gt;commitWrite</refname>
@ -69,12 +69,12 @@ var_dump($p->getStub());
<![CDATA[
string(24) "<?php __HALT_COMPILER();"
string(186) "<?php
function __autoload()
function __autoload($class)
{
include 'phar://' . str_replace('_', '/', );
include 'phar://' . str_replace('_', '/', $class);
}
Phar::mapPhar('brandnewphar.phar');
include 'phar://brandnewphar.phar/startup.php';
Phar::mapPhar('myphar.phar');
include 'phar://myphar.phar/startup.php';
__HALT_COMPILER();
?>"
]]>