Textarea空白

时间:2014-05-23 08:43:45

标签: php html textarea whitespace

每次我更新表单textarea时,表单都会添加一个空白区域。这是一个问题,因为我使用textarea输入来创建一个新的数组元素,其中包含用户使用的每一个新行。

HTML:

<textarea class='form-control input-lg' name='stout' style='width:100%;min-height:200px;resize: none; '> 
     <?php $a = $functie-  >_getFileContent('../content/stout.txt', 'j');
     echo $bewerking->_extraInfoInput($a);?>
</textarea>

功能

public function _extraInfoInput($a){
    $a = preg_replace('/ /', '', $a);

    return $a;
}

 public function _getFileContent($file,$uitzondering){       
   $content = file_get_contents($file);        
   if($content != ''){
       if($uitzondering == ''){
           $a = $content.'<br/>';
       }
       else{

           $a = $content;

       }
       return $a;
   }  

}

1 个答案:

答案 0 :(得分:4)

你的html中有空格。改为这个

<textarea class='form-control input-lg' name='stout' style='width:100%;min-height:200px;resize: none;'><!-- no whitespace here--><?php $a = $functie-  >_getFileContent('../content/stout.txt', 'j');
 echo $bewerking->_extraInfoInput($a);?><!-- or here --></textarea>