How you can change data type in PHPwrite a script in PHP that change the string data type in numeric data type?

1 answer

Answer

1159215

2026-08-03 22:20

+ Follow

If you will read typecasting on php, you will know more on this.

<?php

$str = "10";

$num = (int)$str;

?>

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.