PHP recognize three kinds of data type, that is :
1.Integer
2.Floating point number
3.String
Integer
Which the included in this data type is integer (do not wear comma). example of :
($a = 1234 // decimal)
($b = - 1234 // negative)
($c = 0123 // octal)
($d = 0x12 // hexadecimal)
Floating point number
Is referred as also fraction number. There are dot sign representing winnow between circular shares and fraction.
($a = 1.234 // ordinary form)
($b = 1.2e3 // exponential form)
Strings
($a = "this is data type of string")
PHP recognize three kinds of data type, that is :
1.Integer
2.Floating point number
3.String
Integer
Which the included in this data type is integer (do not wear comma). example of :
($a = 1234 // decimal)
($b = - 1234 // negative)
($c = 0123 // octal)
($d = 0x12 // hexadecimal)
Floating point number
Is referred as also fraction number. There are dot sign representing winnow between circular shares and fraction.
($a = 1.234 // ordinary form)
($b = 1.2e3 // exponential form)
Strings
($a = "this is data type of string")