Convert char to int in PHP
cast string to int php
$num = "3.14";
$int = (int)$num;//string to int
$float = (float)$num;//string to float
php to int
$num = "3.14";
$int = (int)$num;
$num = "3.14";
$int = (int)$num;//string to int
$float = (float)$num;//string to float
$num = "3.14";
$int = (int)$num;
In this page (written and validated by A. Gawali) you learned about . What's Next? If you are interested in completing PHP tutorial, we encourage you simply to start here: PHP Tutorial.
Share On: |