使用 PHP 个文件追加到特定位置

Append at a specific position using PHP files

我正在尝试将 <?xml version="1.0" encoding="UTF-8"?> 之后的 <?xml-stylesheet type='text/xsl' href='soap.xslt'?> 添加到 xml 文件,这实际上是 SOAP 响应,但它只是替换 [=14] 之后找到的数据=] 与样式表的 link 。
这是 client.php 中的代码部分,它将 soap 响应写入文件并附加我想要的部分。

<?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
?>

xml 文件的内容如下:

<?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>

它似乎是在剪切和添加它而不是正确地附加它。 任何帮助将不胜感激。谢谢。

使用 DOMDocument 操作 XML 文档,例如

$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');