Jump to content

ClintWilson

New Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by ClintWilson

  1. This did exactly what I wanted in a much shorter concise code. was not familiar with xpath will have to read up on that one now. This will also help me down the road when we add more leds to the system. Thanks!
  2. Sorry $url = "http://10.0.0.23/gwr/gop.php?cmd=gwrbatch&data=<gwrcmds><gwrcmd><gcmd>RoomGetCarousel</gcmd><gdata><gip><version>1</version><token>1234567890</token><fields>name,control,power,product,class,realtype,status</fields></gip></gdata></gwrcmd></gwrcmds>"; $onled = '<img src="images\bulb-icon-on.png" />'; $offled = '<img src="images\bulb-icon-off.png" />'; $xmlstring = file_get_contents($url, false, $context); $devices = array(); $xml = simplexml_load_string($xmlstring); foreach($xml->gwrcmd->{'gdata'}->{'gip'}->{'room'}->{'device'} as $item){ $device = array(); foreach($item as $key => $value){ $device[(string)$key] = (string)$value; } $devices[] = $device; } echo '<pre>'; print_r($devices); echo '</pre>'; echo "<br/><br/><hr/><br/>"; foreach ($devices as $info => $status) { foreach ($status as $statusnow){ echo $statusnow.'<br />'; } } Here is also the XML from the url <gwrcmds> <gwrcmd> <gcmd>RoomGetCarousel</gcmd> <gdata> <gip> <version>1</version> <rc>200</rc> <room> <rid>1</rid> <name>Master Bedroom</name> <desc /> <known>1</known> <type>0</type> <color>00bd1f</color> <colorid>1</colorid> <img>img/room/green.png</img> <power>0</power> <poweravg>0</poweravg> <energy>0</energy> <device> <did>216616014153767704</did> <known>1</known> <lock>0</lock> <state>1</state> <level>100</level> <node>30</node> <port>0</port> <nodetype>16386</nodetype> <name>Beth's</name> <desc>LED</desc> <colorid>1</colorid> <type>multilevel</type> <rangemin>0</rangemin> <rangemax>99</rangemax> <power>0.011</power> <poweravg>0</poweravg> <energy>0</energy> <score>0</score> <productid>1</productid> <prodbrand>TCP</prodbrand> <prodmodel>LED A19 11W</prodmodel> <prodtype>LED</prodtype> <prodtypeid>78</prodtypeid> <classid>2</classid> <class /> <subclassid>1</subclassid> <subclass /> <other> <rcgroup /> <manufacturer>TCP</manufacturer> <capability>productinfo,identify,meter_power,switch_binary,switch_multilevel</capability> <bulbpower>11</bulbpower> </other> </device> <device> <did>216616014154116936</did> <known>1</known> <lock>0</lock> <state>0</state> <level>100</level> <node>30</node> <port>0</port> <nodetype>16386</nodetype> <name>Clint</name> <desc>LED</desc> <colorid>1</colorid> <type>multilevel</type> <rangemin>0</rangemin> <rangemax>99</rangemax> <power>0</power> <poweravg>0</poweravg> <energy>0</energy> <score>0</score> <productid>1</productid> <prodbrand>TCP</prodbrand> <prodmodel>LED A19 11W</prodmodel> <prodtype>LED</prodtype> <prodtypeid>78</prodtypeid> <classid>2</classid> <class /> <subclassid>1</subclassid> <subclass /> <other> <rcgroup /> <manufacturer>TCP</manufacturer> <capability>productinfo,identify,meter_power,switch_binary,switch_multilevel</capability> <bulbpower>11</bulbpower> </other> </device> </room> </gip> </gdata> </gwrcmd> </gwrcmds>
  3. I have an array which will be below. The array is being built from an XML file, the problem is I need to extrapolate data from it. I am having trouble with looping through the array properly. The output should be something like this: Beth's state is 0 (Where Beth's is the name and 0 is the state) Clint's state is 0 Array ( [0] => Array ( [did] => 216616014153767704 [known] => 1 [lock] => 0 [state] => 0 [level] => 100 [node] => 30 [port] => 0 [nodetype] => 16386 [name] => Beth's [desc] => LED [colorid] => 1 [type] => multilevel [rangemin] => 0 [rangemax] => 99 [power] => 0 [poweravg] => 0 [energy] => 0 [score] => 0 [productid] => 1 [prodbrand] => TCP [prodmodel] => LED A19 11W [prodtype] => LED [prodtypeid] => 78 [classid] => 2 [class] => [subclassid] => 1 [subclass] => [other] => ) [1] => Array ( [did] => 216616014154116936 [known] => 1 [lock] => 0 [state] => 0 [level] => 100 [node] => 30 [port] => 0 [nodetype] => 16386 [name] => Clint's [desc] => LED [colorid] => 1 [type] => multilevel [rangemin] => 0 [rangemax] => 99 [power] => 0 [poweravg] => 0 [energy] => 0 [score] => 0 [productid] => 1 [prodbrand] => TCP [prodmodel] => LED A19 11W [prodtype] => LED [prodtypeid] => 78 [classid] => 2 [class] => [subclassid] => 1 [subclass] => [other] => ) )
×
×
  • 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.