0

我正在尝试为每个textarea人命名,以便以后可以使用它们将它们发送回数据库。使用这段代码,我得到了一些奇怪的结果,我猜是因为我使用str_replace.

这是代码:

$description2 = mysql_result($product, 0, 'productDescription2');
$totalteknisk = preg_match_all('/x(a|b|d|e)/', $description2, $matches);
$searchArray = array('xa', 'xb', 'xc', 'xd', 'xe');

if ($description2 !=""){
for($z=1;$z <= $totalteknisk; $z++){
$xa = '<textarea name="'. $z .'" style="background-color:#FFFFFF;resize: none; height: 20px; width: 200px;">';
$z++;
$xb ='</textarea><textarea name="'. $z .'" style="background-color:#FFFFFF;resize: none; height: 20px; width: 200px;">';
$z++;
$xc = '</textarea><br>';
$xd = '<textarea name="'. $z .'" style="background-color:#EAF2D3;resize: none; height: 20px; width: 200px;">';
$z++;
$xe = '</textarea><textarea name="'. $z .'" style="background-color:#EAF2D3;resize: none; height: 20px; width: 200px;">';
$replaceArray = array($xa, $xb, $xc, $xd, $xe);
$teknisk .=  str_replace($searchArray, $replaceArray, $description2);   
}                               
}

来自数据库的示例字符串xa1xb2xcxd3xe4xcxa5xb6xc(description2)

正如你所看到的,我试图将它全部循环并给它一个值 1 到$totalteknisk.

我愿意就如何使这项工作提出建议。

4

1 回答 1

0

我通过使用 preg_replace_callback(...) 以不同的方式解决了它

$description2 = 'xa1xb2xcxd3xe4xcxa5xb6xc';

$html = preg_replace_callback('/x(?:a|b|c|d|e)/', function($match) {
    static $count;

    $count++;

    switch($match[0]) {
        case 'xa':
            return "<textarea name=\"$count\" style=\"background-color:#FFFFFF;resize: none; height: 20px; width: 200px;\">";
        case 'xb':
            return "</textarea><textarea name=\"$count\" style=\"background-color:#FFFFFF;resize: none; height: 20px; width: 200px;\">";
        case 'xc':
            return "</textarea><br />";
        case 'xd':
            return "<textarea name=\"$count\" style=\"background-color:#EAF2D3;resize: none; height: 20px; width: 200px;\">";
        case 'xe':
            return "</textarea><textarea name=\"$count\" style=\"background-color:#EAF2D3;resize: none; height: 20px; width: 200px;\">";
    }
}, $description2);

$teknisk .= $html;

我还建议您不要只使用数字作为文本区域中的“名称”属性。您可能应该考虑使用其他名称,例如fields[$count],然后通过以下方式引用它$_POST['fields'] ...

于 2012-06-04T14:18:22.953 回答