Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请问有什么解决方法可以避免使用 SendAndLoad() 发送数据时生成的新行;在 AS2 中?
我发"00:00:12:36"
"00:00:12:36"
但是php输出:
00 :00 :12:36
有什么帮助吗??
奇怪的...
var stripped:String = data.split("\r").concat(""); // or \n alternatively
从动作脚本中删除它,但你宁愿修复 php.ini 文件。
发送:
escape("00:00:12:36")
在 PHP 中:
$myvar = urldecode($variableCameFromFlash);