Jump to content

struggling!


westminster86

Recommended Posts

$soap = new SoapClient('http://');  // wsdl code shows where the SOAP server code is expected to be found

  try {
    $avalue = $soap->getinfo();  // call the getinfo method in the soap object
    } catch (SoapFault $ex) {
    echo $ex->faultstring;
  }

  print $avalue;

 

Im reading in a text string via a SOAP sever called from a client. So in the above $avalue holds the text string from the getinfo function declared in the SOAP server. My question is, how would i get round reading in data from other SOAP services? So, for example after reading in $avalue, i get data from

$soap = new SoapClient('http://This time round a different directory');

 

Should i be using a loop of some sort, so that after its read in the text string from one directory it fetches in another from a different SOAP server.

 

Link to comment
https://forums.phpfreaks.com/topic/95599-struggling/
Share on other sites

Maybe this is clearer...

 

$variable = 'Please';

$variable = 'help';

$variable = 'me';

 

echo $variable;

 

The echo statement is only going to print out me. What i want is for it to read in please first, and then go back round the loop and then read in help and so forth.

Link to comment
https://forums.phpfreaks.com/topic/95599-struggling/#findComment-489496
Share on other sites

How would i write a loop that reads in the first variable(hello), does something with the variable, then comes back round the loop and reads in the second variable(bye).

 

<?php

  $variable1 = 'hello';
  $variable2 = 'bye';
  $arr = array($variable1,$variable2);
  foreach ($arr as $v) {
    // do something.
    echo $v;
  }

?>

Link to comment
https://forums.phpfreaks.com/topic/95599-struggling/#findComment-490417
Share on other sites

That's not what the OP is looking for.

 

If you don't know how many variables you are going to have, start with an empty array and add to it as you get the values:

<?php
$ar = array();
$ar[] = 'some value';;
$ar[] = getanotherval();
$ar[] = 'some other value';
//
// process
//
foreach($ar as $val) {
//
//  do something
//
}?>

 

Ken

Link to comment
https://forums.phpfreaks.com/topic/95599-struggling/#findComment-490451
Share on other sites

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.