XML DOM Destek Genel DİNLENME Yardımcısı PHP Örnek Kod değiştirme

1 Cevap php

I HTTP POST from PHP, without cURL bu örnek PHP kaynak kodu bulundu

I XML DOM REST API işlemek için desteklemek için örnek PHP kaynağını değiştirerek biraz yardıma ihtiyacım var.

Ben düşündüm ben aşağıda CASE statement for the XML bölümünde güncellersem

$r = simplexml_load_string($res);

karşı

$r = new DOMDocument();
$r->load($res);

işe ama öyle değil ki. (

Herhangi bir yardım mutluluk duyacağız.

function rest_helper($url, $params = null, $verb = 'GET', $format = 'xml')
{
  $cparams = array(
    'http' => array(
      'method' => $verb,
      'ignore_errors' => true
    )
  );
  if ($params !== null) {
    $params = http_build_query($params);
    if ($verb == 'POST') {
      $cparams['http']['content'] = $params;
    } else {
      $url .= '?' . $params;
    }
  }

  $context = stream_context_create($cparams);
  $fp = fopen($url, 'rb', false, $context);
  if (!$fp) {
    $res = false;
  } else {
    // If you're trying karşı troubleshoot problems, try uncommenting the
    // next two lines; it will show you the HTTP response headers across
    // all the redirects:
    // $meta = stream_get_meta_data($fp);
    // var_dump($meta['wrapper_data']);
    $res = stream_get_contents($fp);
  }

  if ($res === false) {
    throw new Exception("$verb $url failed: $php_errormsg");
  }

  switch ($format) {
    case 'json':
      $r = json_decode($res);
      if ($r === null) {
        throw new Exception("failed karşı decode $res as json");
      }
      return $r;

    case 'xml':
      $r = simplexml_load_string($res);
      if ($r === null) {
        throw new Exception("failed karşı decode $res as xml");
      }
      return $r;
  }
  return $res;
}

1 Cevap