mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
forgot to move example
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@233029 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
f1e09067dd
commit
5dc785edf3
1 changed files with 13 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<refentry id="function.ceil">
|
||||
<refnamediv>
|
||||
<refname>ceil</refname>
|
||||
|
@ -15,20 +15,6 @@
|
|||
Returns the next highest integer value by rounding up
|
||||
<parameter>value</parameter> if necessary.
|
||||
</simpara>
|
||||
<para>
|
||||
<example>
|
||||
<title><function>ceil</function> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
echo ceil(4.3); // 5
|
||||
echo ceil(9.999); // 10
|
||||
echo ceil(-3.14); // -3
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
</refsect1>
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
|
@ -58,7 +44,18 @@ echo ceil(-3.14); // -3
|
|||
<refsect1 role="examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
|
||||
<example>
|
||||
<title><function>ceil</function> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
echo ceil(4.3); // 5
|
||||
echo ceil(9.999); // 10
|
||||
echo ceil(-3.14); // -3
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
</refsect1>
|
||||
<refsect1 role="seealso">
|
||||
|
|
Loading…
Reference in a new issue