Question: How would you use typecasting in PHP to convert a string to an integer? How would you use typecasting in PHP to convert a string

How would you use typecasting in PHP to convert a string to an integer?
How would you use typecasting in PHP to convert a string to an integer?
There is no typecasting in PHP
$val =(int)'47.5'; // The result would be 47
$val = round(55.2); // The result would be 55
$val = int(45.9); // The result would be 45f

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!