Answers for "type casting in php"

PHP
0

type casting in php

$x = 2.5;
$y = (int) $x; // cast $x to integer
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language