drxdai15012937753 2016-10-26 13:40
浏览 54
已采纳

PHP - 防止动态创建文本区域中的换行符

I have a form with sets of inputs that can be dynamically created -- see here.

In order to push the values gathered from these inputs to a .csv sheet and keep them together in a single cell, I am using the following PHP function. It gathers the content from the 3 inputs, saves it to the .csv in a single cell, and for every new iteration of inputs, it just separates the entries with a "//" but keeps it in the same cell (like this: President, 2015, I was the president// Vice President, 2014, I was the vice president).

PHP

$provincialInvolvement = $_POST["provincialInvolvement"];
$provincialInvolvementValues = "";
$e = 0;

foreach($provincialInvolvement as $piValue)
    {
        $provincialInvolvementValues .= $piValue;
        $e++;
        if($e % 3 == 0)
            {
                $provincialInvolvementValues .= "//";
            }

    }

My problem is because the last input is a textarea, if a line break is put in (someone hits the enter key) it breaks the form of the .csv and puts it on a new line.

I am trying to write a function onto the portion of my PHP that, as it logs the value into $provincialInvolvementValues it removes any linebreaks but I;m having no luck.

Here is the function problem is it doesn't log anything.

$provincialInvolvement = $_POST["provincialInvolvement"];
$provincialInvolvementValues = "";
$e = 0;

foreach($provincialInvolvement as $piValue)
    {
        $provincialInvolvementValues .= $piValue;
        $e++;
        $provincialInvolvementValues = preg_replace( "/(|
)/ ", "", $provincialInvolvementValues ); 
        return $provincialInvolvementValues;
        if($e % 3 == 0)
            {
                $provincialInvolvementValues .= "//";
            }

    }
  • 写回答

1条回答 默认 最新

  • dsvjmc0907 2016-10-26 14:12
    关注

    Maybe try this: preg_replace( "? \s*", "", $provincialInvolvementValues) - newlines are usually or so this might work better.

    Also, the return $provincialInvolvementValues; is probably wrong in the loop...

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line