Akışı açılamadı

0 Cevap

Ben file_get_contents kullanmaya çalışıyorum ama bana failed to open stream söyler.

Benim kod:

$user="first_last@ourwiki.com";
$user_id=str_replace(array('@', '#'), array('%40', '%23'), $user);
print $user_id;

$url=('http://admin:password@172.16.214.133/@api/users/=$user_id/properties');
$xmlString=file_get_contents($url);

Bu onu çalıştırmayı denediğinizde ne olsun:

Warning: file_get_contents(http://...@172.16.214.133/@api/deki/users/=$user_id/properties): failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error

Ben elle $ user_id first_last%40ourwiki.com yazarsanız Ancak, o bu işe yarıyor! Ben yanlış ne yapıyorum? Ben sadece değişken adı kullanmak mümkün olmamalı?

Kalan kodu:

$delete = "http://admin:password@172.16.214.133/@api/users/=$user_id/properties/%s";
$xml = new SimpleXMLElement($xmlString);

function curl_fetch($url,$username,$password,$method='DELETE')
{
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch,CURLOPT_USERPWD,"$username:$password");
    return  curl_exec($ch);
}

foreach($xml->property as $property) {
  $name = $property['name'];
  $name2 =str_replace(array('@', '#'), array('%40', '%23'), $name);
  print $name2;
  curl_fetch(sprintf($delete, $name2),'admin','password');
}

0 Cevap