<?php
$abc = 10; // $abc es un integer
$xyz = (boolean) $abc; // $xyz es boolean
echo "abc es $abc y xyz es $xyz <br>";
?>
Casteos permitidos:
- (int), (integer) - cast a integer
- (bool), (boolean) - cast a boolean
- (float), (double), (real) - cast a float
- (string) - cast a string
- (array) - cast a array
- (object) - cast a object
Comentarios