} catch (SoapFault $x) {
    print "\r\n\r\nRequest was:\r\n" . preXml($client->__getLastRequest()) . "\r\n";
    print "Exception:\r\n" . $x . "\r\n";
}
?>
 
    </pre>

    <h2>tns:ArrayOfIdGroups FilterInvalidIdsInGroups(tns:ArrayOfIdGroups)</h2>
    <pre class="console">
<?php 
try {
    print "FilterInvalidIdsInGroups([[-5, 4, 0, 20, 1000000, 48], [1, 2, 3], [0, 1, -1, 2, -2]]) returns:\r\n";
    ?>
<span class="return"><?php 
    echo htmlspecialchars(var_export($client->FilterInvalidIdsInGroups(array(array(-5, 4, 0, 20, 1000000, 48), array(1, 2, 3), array(0, 1, -1, 2, -2))), true));
    ?>
</span><?php 
    print "\r\n\r\nRequest was:\r\n" . preXml($client->__getLastRequest()) . "\r\n";
    print "\r\nResponse was:\r\n" . preXml($client->__getLastResponse()) . "\r\n";
} catch (SoapFault $x) {
    print "\r\n\r\nRequest was:\r\n" . preXml($client->__getLastRequest()) . "\r\n";
    print "Exception:\r\n" . $x . "\r\n";
}
?>
 
    </pre>

    <h2>soapenc:Array ReverseArray(soapenc:Array)</h2>
    <pre class="console">
<?php