0
我相信我正確設置了if(strpos());
。在幾個例子中看到它之後,我嘗試了在else{};
和elseif {};
中的設置,但是它們提示了意外的'}'
等等。這是爲什麼迴應不匹配的值?
<?php
$extension = '.com';
$lines = file('testdomains.txt');
foreach($lines as $line)
{
// Check if the line contains the string we're looking for, and print if it does
if(strpos($line, $extension) !== false)
$line = preg_replace('/12:00:00 AM,AUC\b/','<br />', $line);
$line = preg_replace('/,9\/28\/2013/', '', $line);
echo $line;
}
?>
這會做到這一點!我整個過程都是錯誤的:P 謝謝! – CodingNoob