dongluanan7163 2016-01-13 18:50
浏览 50
已采纳

写入文件时出现意外的PHP换行符

I am trying to make a web based chat room and I am storing messages in a text file. But when writing to the file sometimes the line just breaks and starts a new one mid-string, my code for writing:

$_msg_file=fopen("message.txt","a");
stream_filter_append($_msg_file, 'convert.iconv.UTF-8/OLD-ENCODING');
///WRITE TO FILE
if($_SESSION["class"]==="admin")
{
    fwrite($_msg_file,"<li><b style='color:#FF9393;'>".$_SESSION["name"]."</b> ".$_POST["msg"]."</li>
");
}else {
    fwrite($_msg_file,"<li><b style='color:black;'>".$_SESSION["name"]."</b> ".$_POST["msg"]."</li>
");
}
fclose($_msg_file);

Output: http://pastebin.com/0cucqbTW

My jQuery for posting text:

var data={};
data["why"]="send";
data["msg"]=$(".box_msg").val();
if(data["msg"].length<100 && data["msg"].length>1)
{
$.ajax({
  type:"POST",
  url:"send.php",
  data:data,
  success:function(response)
  {
      $(".box_msg").val("");
  },
  error:function(response)
  {
      $("#chat").text(response);
  }
});
  • 写回答

2条回答 默认 最新

  • duanmu5039 2016-01-13 19:08
    关注

    What you have is linebreak characters that you can't see but that are being sent within the $_POST value, as mentioned by Marc B.

    The work around to this is to remove the PHP End of Line Characters, which are handily referenced as PHP_EOL.

    (Personally I would also reference array keys in single quotes as double quotes effects quote references and such within the array values)

    So

    $_POST['msg'] = str_replace(PHP_EOL, '', $_POST['msg']);
    // str_replace($search,replace,subject);
    

    This will remove system used line breaks from the string, before you can then save to the file. You can additionally replace standard line break [type character]s such as and ( is not actually a linebreak as such, exactly) in case they're different from the PHP_EOL value :

    Also suggested you save the changes as another variable rather than the original POSTed data.

    $breaks = array("
    ","",PHP_EOL);
    $strippedMessage = str_replace($breaks, '', $_POST['msg']);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Excel发现不可读取的内容
  • ¥15 UE5#if WITH_EDITOR导致打包的功能不可用
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真
  • ¥15 mars2d在vue3中的引入问题
  • ¥50 h5唤醒支付宝并跳转至向小荷包转账界面
  • ¥15 算法题:数的划分,用记忆化DFS做WA求调
  • ¥15 chatglm-6b应用到django项目中,模型加载失败
  • ¥15 CreateBitmapFromWicBitmap内存释放问题。