Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update float.xml #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 26 additions & 11 deletions language/types/float.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,32 @@ EXPONENT_DNUM (({LNUM} | {DNUM}) [eE][+-]? {LNUM})
<sect2 xml:id="language.types.float.casting">
<title>Convertendo para float</title>

<para>
Para informações sobre a conversão de <type>string</type>s para <type>float</type>,
veja a seção <link linkend="language.types.string.conversion">Conversão de
Strings para números</link>. Para valores de outros tipos, o valor é primeiro
convertido para <type>inteiro</type> e então para
<type>float</type>. Veja a seção
<link linkend="language.types.integer.casting">Convertendo
para inteiros</link> para mais informações. No PHP 5, um aviso é emitido se você tentar converter um
<type>object</type> para um <type>float</type>.
</para>

<sect3 xml:id="language.types.float.casting.from-string">
<title>A partir de strings</title>
<simpara>
Se a string é
<link linkend="language.types.numeric-strings">numérica</link>
ou começa numérica então ela irá resolver para o
valor float correspondente, do contrário ela é convertida em zero
(<literal>0</literal>).
</simpara>
</sect3>
<sect3 xml:id="language.types.float.casting.from-other">
<title>A partir de outros tipos</title>
<para>
Para valores de outros tipos, a conversão é realizada convertendo o
valor para <type>int</type> primeiro e em seguida para <type>float</type>. Veja
<link linkend="language.types.integer.casting">Convertendo para inteiro</link>
para mais informações.
</para>
<note>
<para>
Como certos tipos têm comportamento indefinido ao converter para
<type>int</type>, este também é o caso ao converter para
<type>float</type>.
</para>
</note>
</sect3>
</sect2>

<sect2 xml:id="language.types.float.comparison">
Expand Down