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
何か助けは?
送信:
escape("00:00:12:36")
そしてPHPで:
$myvar = urldecode($variableCameFromFlash);
変...
var stripped:String = data.split("\r").concat(""); // or \n alternatively
actionscript から削除しますが、php を修正する必要があります。