简体   繁体   中英

Append at a specific position using PHP files

I am trying to add <?xml-stylesheet type='text/xsl' href='soap.xslt'?> after the <?xml version="1.0" encoding="UTF-8"?> to the xml file, which is in fact the SOAP response but it is only replacing the data found after <?xml version="1.0" encoding="UTF-8"?> with the link for the stylesheet.
Here's the part of the code from the client.php which writes the soap response to a file and appends the part i want.

<?php

if(isset($_POST['search_input']))
{
try
{
    $input = $_POST['search_input'];

    $wsdl = "http://localhost/WebService/UDDI/90210Store.wsdl";

    //$options = array('cache_wsdl'=>WSDL_CACHE_NONE, 'features'=>SOAP_SINGLE_ELEMENT_ARRAYS);

    //$client = new SoapClient($wsdl, $options);

    $debugOption = array('trace'=>true, 'cache_wsdl'=>WSDL_CACHE_NONE, 'features'=>SOAP_SINGLE_ELEMENT_ARRAYS);
    $client = new SoapClient($wsdl, $debugOption);

    $response = $client->viewDressPerPrice($input);


    $soaprequest = "<strong>REQUEST:</strong><br/>" . htmlspecialchars($client->__getLastRequest()) . "<br/>";
    $soapresponse = htmlspecialchars($client->__getLastResponse());

    echo $soapresponse;

    $file = 'soap.xml';

    file_put_contents($file, $soapresponse);

    $file2 = fopen($file, "r+");
    fseek($file2, 64, SEEK_SET); //maybe the offset is not correct
    fwrite($file2, "<?xml-stylesheet type='text/xsl' href='soap.xslt'?>");
    fclose($file2);

    //rest of the code
?>

Here's the content of the xml file:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type='text/xsl' href='soap.xslt'>
schemas.xmlsoap.org/soap/envelope/" //where it is not appending correctly
xmlns:ns1="http://www.shehzad.edu/webservice">
<SOAP-ENV:Body>
  <ns1:Result>
     <ns1:DressPerPrice>
        <ns1:Name>Dress 2</ns1:Name>
        <ns1:Price>20</ns1:Price>
        <ns1:Image>2.jpeg</ns1:Image>
     </ns1:DressPerPrice>
     <ns1:DressPerPrice>
        <ns1:Name>Dress 9</ns1:Name>
        <ns1:Price>20</ns1:Price>
        <ns1:Image>3.jpeg</ns1:Image>
     </ns1:DressPerPrice>
     <ns1:DressPerPrice>
        <ns1:Name>Dress 10</ns1:Name>
        <ns1:Price>20</ns1:Price>
        <ns1:Image>0905C58A0179_1.jpeg</ns1:Image>
     </ns1:DressPerPrice>
     <ns1:DressPerPrice>
        <ns1:Name>Dress 11</ns1:Name>
        <ns1:Price>20</ns1:Price>
        <ns1:Image>0905C58A0179_1.jpeg</ns1:Image>
     </ns1:DressPerPrice>
     <ns1:DressPerPrice>
        <ns1:Name>Dress 12</ns1:Name>
        <ns1:Price>20</ns1:Price>
        <ns1:Image>0905C58A0179_1.jpeg</ns1:Image>
     </ns1:DressPerPrice>
  </ns1:Result>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

It seems like it is cutting and adding it instead of correctly appending it. Any help will be appreciated. Thanks.

Use DOMDocument to manipulate an XML document eg

$doc = new DOMDocument();
$doc->load('file.xml');
$doc->insertBefore($doc->createProcessingInstruction('xml-stylesheet', "type='text/xsl' href='soap.xslt'"), $doc->documentElement);
$doc->save('file.xml');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM