我有一个非常简单的脚本,似乎在不同的服务器上表现不同!
这是脚本:
<?php
$list = file_get_contents("list.txt");
$list = str_replace(Array("\r\n", "\r", "\n", "\f"), "\n", $list);
$all = explode("\n\n", $list);
foreach($all as $k => $v) {
$b = preg_replace('/\s+/', '^', $v);
echo $b."<br/><br/>";
}
?>
上面写着:
System: Avro
Supplier: ABC Inc
Quantity: 1
Type: ICD
Key: PA-658_ao8uY
For Clarity: PA-658_AO8UY
Quantity: 10
Type: PSTHG
Key: tg675_0O09i8
For Clarity: PA-658_AO8UY
我有 3 台服务器要测试,我需要它在所有 3 台服务器上都能正常工作。它们是 php 4.3.10、5.2.13 和 5.3.5
该脚本在 PHP 5.2.13 上返回这个 - 这是我所期待的。
System:^Avro^Supplier:^ABC^Inc
Quantity:^1^Type:^ICD^Key:^PA-658_ao8uY^For^Clarity:^PA-658_AO8UY
Quantity:^10^Type:^PSTHG^Key:^tg675_0O09i8^For^Clarity:^PA-658_AO8UY
然而在 4.3.10 和 5.3.5 我得到:
System:^ ^ ^ ^ ^Avro^Supplier:^ ^ ^ ^ABC^Inc
Quantity:^ ^ ^ ^1^Type:^ ^ ^ ^ ^ ^ ^ICD^Key:^ ^ ^ ^ ^ ^ ^ PA-658_ao8uY^For^Clarity:^ PA-658_AO8UY
Quantity:^ ^ ^ ^10^Type:^ ^ ^ ^ ^ ^ ^PSTHG^Key:^ ^ ^ ^ ^ ^ ^ tg675_0O09i8^For^Clarity:^ PA-658_AO8UY
如何使所有输出都相同?
谢谢
更新:我已经通过更改:
$b = preg_replace('/\s+/', '^', $v);
到
$b = preg_replace('/(\s|\xa0)+/', '^', $v);