i want write a demo use twilio with php,i have succee in useing offical demo like this
$client = new Services_Twilio($AccountSid, $AuthToken);
$message = $client->account->calls->create(
$accountData["From"],
$accountData["To"],
$accountData["voice-url"]
);
$accountData["voice-url"] is a demo voice url,now i want say somthing different,i have no public server,so i can't make a restAPI,can i make a response in local?
<Reponse>
<Say>hahahaha</Say>
</Reponse>