You have already completed these exercises!
Do you want to take them again?
You completed the PHP Casting Exercises from W3Schools.com
Share on:
What is a correct syntax to cast a float into a string?
$ = (string) 5.6;
$ = tostring(5.6);
$ = (5.6).tostr()