Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

string to float php

method_1:
  intval($string);//for string to integer
  floatval($string); //for string to float

method_2:
	$int = (int)$string;//string to int
	$float = (float)$string;//string to float
 
PREVIOUS NEXT
Tagged: #string #float #php
ADD COMMENT
Topic
Name
7+8 =