Php: How to convert string into double?

Junaid

I am developing an android app in which i convert double values of latitude and longitude to string at android side and save them in wamp database as varchar using my server side php, but what i want is to convert these values back to double before storing into database and then store these values as dobule in database. So please help me how to do this and also tell what should be the datatype to store double values in mysql ? Thanks.

Talha Q

Use floatval()..Also Check doubleval()

e.g

  $var = '86.389';
  $float_value_of_var = floatval($var);
  echo $float_value_of_var; // 86.389

You can also do that by using binary calculator.Check this link too

  $s = '123412.13';
  $double = bcadd($s,'0',2);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to convert string to double in php without using doubleval function?

From Dev

How convert CDATA xml with more single and double quote in a string php?

From Java

Swift - How to convert String to Double

From Dev

How to convert a double to a string with 2 decimal places?

From Dev

How to convert Long Double to String in swift

From Dev

PHP convert double quoted string to single quoted string

From Dev

How to convert string "$double_number" to double number

From Dev

How to convert a string to integer in php

From Dev

How to Convert Php Object to String?

From Dev

PHP: Convert single-quoted string into double-quoted

From Dev

Could not convert double to string

From Dev

Cannot convert Double to String

From Dev

Convert string to double (NOT decimal)

From Dev

Convert Double from String

From Dev

Oracle: Convert string to double

From Dev

Convert double to String in Java

From Dev

convert String to double with '%'

From Dev

Convert a string with commas to double

From Dev

convert string to double not working?

From Dev

Convert Double to String Android

From Dev

Convert string to double (NOT decimal)

From Dev

Convert a string to a double for a if clause

From Dev

convert String to double with '%'

From Dev

jsoncpp: convert string to double

From Dev

How to convert PHP String to PHP Regex

From Dev

how to convert escaped c# string with double quotes to escaped javascript string with double quotes

From Dev

How can I convert from qi::double_ to string?

From Dev

How to Convert a String ArrayList to a Double ArrayList and calculate the sum of values?

From Dev

C# how to convert a double to string with decimal and thousand

Related Related

HotTag

Archive