PHP  
downloads | documentation | faq | getting help | | php.net sites | links 
search for in the  
previousComent�riosN�meros de ponto flutuantenext
Last updated: Thu, 18 Jul 2002
view this page in Printer friendly version | English | Chinese | Czech | Dutch | Finnish | French | German | Hungarian | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Turkish

Cap�tulo 7. Tipos

O PHP suporta os seguintes tipos:

O tipo da vari�vel geralmente n�o � setado pelo programador; em vez disso, � decidido em tempo de execu��o pelo PHP, dependendo do contexto no qual a vari�vel � usada.

Se voc� gostaria de for�ar uma vari�vel a ser convertida para um certo tipo, voc� pode moldar a vari�vel ou usar a fun��o settype() nela.

Note que uma vari�vel pode se comportar de maneiras diferentes em certas situa��es, dependendo de qual tipo ela � no momento. Para mais informa��es, veja a se��o Manipula��o de tipos.

Inteiros

Inteiros podem ser especificados usando-se qualquer uma das seguintes sintaxes:

$a = 1234; # n�mero decimal 
$a = -123; # um n�mero negativo
$a = 0123; # n�mero octal (equivalente a 83 decimal)
$a = 0x12; # n�mero hexadecimal (equivalente a 18 decimal)

User Contributed Notes
Tipos
add a note about notes

06-Jun-2001 06:02

To see if something is numeric (a number) then use is_numeric().  All form
data is returned as strings so checking a form value as an integer will
return false.



22-Mar-2002 02:39

Be carefull! Comparison of any string with integer zero returns TRUE. For
example 'hello'==0 is TRUE.

03-Jul-2002 01:22
But 'hello' === 0 is not, === makes sure that they are equivilent and of
the same type.

add a note about notes
previousComent�riosN�meros de ponto flutuantenext
Last updated: Thu, 18 Jul 2002
show source | credits | stats | mirror sites:  
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Sat Jul 20 20:16:23 2002 CEST