mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
correct markup
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279077 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2c711db1a0
commit
c492e64880
3 changed files with 9 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<refentry xml:id="function.apd-set-session-trace" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>apd_set_session_trace</refname>
|
||||
|
@ -28,7 +28,7 @@
|
|||
<listitem>
|
||||
<para>
|
||||
The directory in which the profile dump file is written. If not set,
|
||||
the apd.dumpdir setting from the &php.ini; file is used.
|
||||
the <literal>apd.dumpdir</literal> setting from the &php.ini; file is used.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.26 $ -->
|
||||
<!-- $Revision: 1.27 $ -->
|
||||
<refentry xml:id="function.extract" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>extract</refname>
|
||||
|
@ -235,7 +235,7 @@ blue, large, sphere, medium
|
|||
The <varname>$size</varname> wasn't overwritten, because we specified
|
||||
<constant>EXTR_PREFIX_SAME</constant>, which resulted in
|
||||
<varname>$wddx_size</varname> being created. If <constant>EXTR_SKIP</constant> was
|
||||
specified, then $wddx_size wouldn't even have been created.
|
||||
specified, then <varname>$wddx_size</varname> wouldn't even have been created.
|
||||
<constant>EXTR_OVERWRITE</constant> would have caused <varname>$size</varname> to have
|
||||
value "medium", and <constant>EXTR_PREFIX_ALL</constant> would result in new variables
|
||||
being named <varname>$wddx_color</varname>,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<refentry xml:id="function.bcompiler-write-exe-footer" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>bcompiler_write_exe_footer</refname>
|
||||
|
@ -17,17 +17,17 @@
|
|||
An EXE (or self executable) file consists of 3 parts:
|
||||
<simplelist>
|
||||
<member>
|
||||
The stub (executable code, e.g. a compiled C program) that loads PHP
|
||||
The <literal>stub</literal> (executable code, e.g. a compiled C program) that loads PHP
|
||||
interpreter, bcompiler extension, stored Bytecodes and initiates a call
|
||||
for the specified function (e.g. main) or class method (e.g. main::main)
|
||||
for the specified function (e.g. main) or class method (e.g. <literal>main::main</literal>)
|
||||
</member>
|
||||
<member>The Bytecodes (uncompressed only for the moment)</member>
|
||||
<member>The bcompiler EXE footer</member>
|
||||
</simplelist>
|
||||
</para>
|
||||
<para>
|
||||
To obtain a suitable stub you can compile php_embed-based stub phpe.c
|
||||
located in the examples/embed directory on bcompiler's CVS.
|
||||
To obtain a suitable stub you can compile php_embed-based stub <filename>phpe.c</filename>
|
||||
located in the <filename>examples/embed</filename> directory on bcompiler's CVS.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
|
Loading…
Reference in a new issue