mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 08:28:54 +00:00
introduce &Type; entity
put example more self-explanatory git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@261884 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
38e589c73b
commit
dc99d7d218
2 changed files with 9 additions and 8 deletions
|
@ -61,6 +61,7 @@
|
|||
<!ENTITY Functions "Functions">
|
||||
<!ENTITY Name "Name">
|
||||
<!ENTITY Alias "Alias of">
|
||||
<!ENTITY Type "Type">
|
||||
|
||||
<!-- These are used in reference/$extname/reference.xml and other
|
||||
supplemental files to mark section titles -->
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.19 $ -->
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 1.20 $ -->
|
||||
<refentry xml:id="function.debug-backtrace" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>debug_backtrace</refname>
|
||||
|
@ -29,9 +29,9 @@
|
|||
<tgroup cols="3">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>Name</entry>
|
||||
<entry>Type</entry>
|
||||
<entry>Description</entry>
|
||||
<entry>&Name;</entry>
|
||||
<entry>&Type;</entry>
|
||||
<entry>&Description;</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -134,7 +134,7 @@
|
|||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
// filename: a.php
|
||||
// filename: /tmp/a.php
|
||||
|
||||
function a_test($str)
|
||||
{
|
||||
|
@ -146,13 +146,13 @@ a_test('friend');
|
|||
?>
|
||||
|
||||
<?php
|
||||
// filename: b.php
|
||||
// filename: /tmp/b.php
|
||||
include_once '/tmp/a.php';
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
<para>
|
||||
Results similar to the following when executing
|
||||
Results similar to the following when executing
|
||||
<filename>/tmp/b.php</filename>:
|
||||
</para>
|
||||
<screen>
|
||||
|
|
Loading…
Reference in a new issue