Simple types / Numbers / Integer
Conversion from a string
Converting to a string
Arithmetic operations
Getting random values
Bitwise operations
Numeral system
<?php
$strNumber =
"42"
;
$number = (
int
)$strNumber;
print
($number);