PHP  
downloads | documentation | faq | getting help | | php.net sites | links 
search for in the  
previousCommentairesBool�ensnext
Last updated: Tue, 11 Jun 2002
view this page in Printer friendly version | English | Brazilian Portuguese | Czech | Dutch | Finnish | German | Hungarian | Italian | Japanese | Korean | Polish | Romanian | Russian | Spanish | Turkish

Chapitre 6. Les types

Introduction

PHP supporte les 8 types basiques suivants :

PHP supporte quatres types scalaires :

PHP supporte deux types compos�s :

PHP supporte deux types sp�ciaux :

Note�: Dans ce manuel, vous rencontrerez souvant le type mixed. C'est un pseudo-type, qui indique que le param�tre peut indiff�remment prendre plusieurs types.

Habituellement, le type d'une variable n'est pas d�clar� par le programmeur. Il est d�cid� au moment de l'ex�cution par le PHP, en fonction du contexte dans lequel la variable est utilis�e.

Si vous voulez forcer une variable � �tre convertie en un certain type, vous devez transtyper (cast) la variable ou utiliser la fonction settype().

Il est � noter qu'une variable peut se comporter de mani�re diff�rente suivant les situations, en fonction du type qui lui est affect�. Pour plus d'informations, voir le paragraphe transtypage.

User Contributed Notes
Les types
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
previousCommentairesBool�ensnext
Last updated: Tue, 11 Jun 2002
show source | credits | stats | mirror sites:  
Copyright © 2001, 2002 The PHP Group
All rights reserved.
This mirror generously provided by:
Last updated: Sun Jul 7 16:31:42 2002 CEST