0

この URL エンコード メッセージを送信しています: http://anydomain.com/message.php?Message=This+is+a+test+message

この URL へ: http://anydomain.com/message.php

以下の $response-> say() で「This is a test message」をデコードして取得する方法がわかりません。ここにコードがあります..

<?php

require_once(‘Services/Twilio.php’);

$response = new Services_Twilio_Twiml();

$response->pause(array("length" => 1));
$response->say(*how do i put the url encoded "This is a test message" message here??*, array("voice" => alice));
$response->pause(array("length" => 1));    
$response->say('End of message', array("voice" => alice));

print $response; 

twiml の残りの部分は機能します...これは新しいので、どんな助けでも大歓迎です。ありがとう - ジム

4

1 に答える 1