UpdateCurrencyRate.php
[Pman.Core] / UpdateCurrencyRate.php
index eb1912e..f2af69d 100644 (file)
@@ -69,24 +69,22 @@ class Pman_Core_UpdateCurrencyRate extends Pman
             );
         }
         
+        $response = $this->curl($this->actionUrl, $params, 'POST');
         
+        libxml_use_internal_errors (true);
+        
+        $doc = new DOMDocument();
+        $doc->loadHTML($response);
+        
+        libxml_use_internal_errors (false);
+        
+        $xpath = new DOMXpath($doc);
+        
+        $ts = $xpath->query("//td[@id='content_section']");
         
+        $elements = $xpath->query("table/tr", $ts->item(0));
         
-//        $params = array(
-//            'lang' => 'en',
-//            'result' => 1,
-//            'date1' => '10/14/14',
-//            'date'=> '10/20/14',
-//            'date_fmt' => 'us',
-//            'exch' => 'CNY',
-//            'expr' => 'USD',
-//            'margin_fixed' => 0,
-//            'format'=> 'HTML'
-//        );
-//        
-//        $response = $this->curl($this->actionUrl, $params, 'POST');
-//        
-//        file_put_contents('/tmp/test.html', $response);
+        print_r($elements);exit;
         
     }