昨天晚上一个提交错误的问题折腾我到两点,可怜的。 表单输入的问题,jquery动态加入的input节点,form提交的时候没有附带上该input的项目,不知道怎么闹的,死活都不行,这个是其一。网上说的方式我也没有测试出正常的解决方式,所以作罢,没有继续用添加节
昨天晚上一个提交错误的问题折腾我到两点,可怜的。
// if you are upset with windows' ^M characters at the end of the line,
// these two lines are for you:
$trans = array("\x0D" => "");
$text = strtr($orig_text,$trans);
// note that ctrl+M (in vim known as ^M) is hexadecimally 0x0D
原文地址:PHP处理control-M字符(^M)的方式, 感谢原作者分享。