mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
d60ca4547e
commit
aaeddc313f
1 changed files with 5 additions and 5 deletions
|
@ -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->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();
|
||||
?>"
|
||||
]]>
|
||||
|
|
Loading…
Reference in a new issue