2012-10-29 46 views
0

我有一個通過PHP將XML數據附加到XML文件末尾的腳本。唯一的問題是,在我通過PHP腳本添加每一行新的XML之後,會創建一個額外的行(空格)。有沒有辦法使用PHP從XML文件中刪除空白,而不會丟失整齊的XML文件?下面是寫入到XML文件我的PHP代碼:使用PHP從XML文件中刪除空格

<?php 

function formatXmlString($xml) { 

    // add marker linefeeds to aid the pretty-tokeniser (adds a linefeed between all tag-end boundaries) 
    $xml = preg_replace('/(>)(<)(\/*)/', "$1\n$2$3", $xml); 

    // now indent the tags 
    $token  = strtok($xml, "\n"); 
    $result  = ''; // holds formatted version as it is built 
    $pad  = 0; // initial indent 
    $matches = array(); // returns from preg_matches() 

    // scan each line and adjust indent based on opening/closing tags 
    while ($token !== false) : 

    // test for the various tag states 

// 1. open and closing tags on same line - no change 
if (preg_match('/.+<\/\w[^>]*>$/', $token, $matches)) : 
    $indent=0; 
// 2. closing tag - outdent now 
elseif (preg_match('/^<\/\w/', $token, $matches)) : 
    $pad=0; 
// 3. opening tag - don't pad this one, only subsequent tags 
elseif (preg_match('/^<\w[^>]*[^\/]>.*$/', $token, $matches)) : 
    $indent=4; 
// 4. no indentation needed 
else : 
    $indent = 0; 
endif; 

// pad the line with the required number of leading spaces 
$line = str_pad($token, strlen($token)+$pad, ' ', STR_PAD_LEFT); 
$result .= $line . "\n"; // add to the cumulative result, with linefeed 
$token = strtok("\n"); // get the next token 
$pad += $indent; // update the pad size for subsequent lines  
endwhile; 

return $result; 
} 

function append_xml($file, $content, $sibling, $single = false) { 
    $doc = file_get_contents($file); 
    if ($single) { 
     $pos = strrpos($doc, "<$sibling"); 
     $pos = strpos($doc, ">", $pos) + 1; 
    } 
    else { 
     $pos = strrpos($doc, "</$sibling>") + strlen("</$sibling>"); 
    } 
    return file_put_contents($file, substr($doc, 0, $pos) . "\n$content" . substr($doc, $pos)); 
} 



$content = "<product><id>3</id><name>Product 3</name><price>63.00</price></product>"; 
append_xml('prudcts.xml', formatXmlString($content), 'url'); 

?> 
+0

」//添加標記換行符來幫助漂亮記號(在所有標記結束邊界之間添加換行符)「 - 我建議刪除該函數的這一部分。 – bcmcfc

+0

你不使用DOMDocument的任何原因? – CD001

回答

0

不要只是把所有在同一行,你就更加靈活:

return file_put_contents($file, substr($doc, 0, $pos) . "\n$content" . substr($doc, $pos)); 

相反(建議):

$buffer = substr($doc, 0, $pos) . "\n$content" . substr($doc, $pos); 
$buffer = rtrim($buffer); 
return file_put_contents($file, $buffer); 

PS:使用DomDocument可能會更直接和保存然後是XML處理字符串函數。 「

+0

我剛剛嘗試過您的新代碼,但每次XML更新後仍然收到空格/換行符。還有其他建議嗎? – three3

+0

可能是的,是的。您需要修剪右邊的部分以去除多餘的換行符。例如。修剪開始,修剪結束,甚至修剪內容 - 根據您的需要:http://php.net/trim - 我只是''rtrim'放在'$ buffer'周圍,因爲從閱讀你的問題我有你的印象擔心文件末尾會出現換行符。 – hakre

+0

謝謝,通過在函數中添加rtrim到內容變量來解決問題! – three3

-1

而是追加新數據$result,然後換行的,做反向。

使用類似if(!empty($result)) { result .= "\n" }的內容來避免用換行符開始XML數據。

+0

感謝您的回覆。你從哪裏得到$ result變量?我對此有點困惑。 – three3

+0

從'formatXmlString()'函數,我剛剛意識到你沒有寫。你應該使用['trim()'](http://ca2.php.net/manual/en/function.trim.php)。 – Sammitch