Jump to content

string value in array to int


liquidskin

Recommended Posts

Hi all,

 

Im so stuck on this! Cant figure out a solution...

 

$precip_array[0] has a value of "80" in it as a string. I need to compare it to an integer.

 

echo (int)$precip_array[0] returns a "0".  Ive also tried adding a 0 but that results in the same.

 

I did a var_dump on $precip_array[0] which returns string(17) "80"

 

I think 17 signifies the length of the string, but I only see 2 digits when I echo this.  Any help is much appreciated.

Link to comment
https://forums.phpfreaks.com/topic/215663-string-value-in-array-to-int/
Share on other sites

It might be easier to troubleshoot if we could see where the array is being given values.

 

 

I'm extracting from an XML file.  The 17 characters is the following: <value>77</value>

 

which I'm doing the following to with functions from xml_regex.php

 

$precip = value_in('probability-of-precipitation', $xml);$precip_array = element_set('value', $precip);

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.