JavaScriptファイルからPHPファイルにデータを送信して、PHPサーバー側で行う必要があるようにするにはどうすればよいですか。私はSMSを送ろうとしています。私のJavaScriptはすべてのデータを読み込んでいますが、残っているのは、私のPHPがすでにPHPファイルを使ってSMSでデータをアクティブにして送ることです。私はそれらを接続できるようにする必要があります。.jsファイルから.php関数ファイルを実行する方法
PHPは関数を処理できますか?それは私の.jsファイルからPHPの関数にデータを送ることでここでやろうとしているものです。そうでない場合は、どのように投稿するのですか?
.jsファイル:
render : function(template,params){
var arr = [];
switch(template){
case 'smsLine':
arr = [
'<div class=" sms-',params.id,' rounded"><span class="gravatar"><img src="',params.gravatar,
'" width="23" height="23" onload="this.style.visibility=\'visible\'" />',
'</span><span class="author">',params.author,
':</span><span class="text">',params.text,
':</span><span class="text">',params.to,
'</span><span class="time">',params.time,'</span></div>'];
///////////////////////////////HERE/////////////////////////////////
//this is where I want to use a function that is in a php file
sendSMS(params.author, params.text, params.time, params.to);
///////////////////////////////HERE////////////////////////////////
break;
}
return arr.join('');
}
これは私が私のPHPファイルで使用する機能です。
の.phpファイル:
function sendSMS($from, $message, $time, $to){
$objGsm = new COM("AxSms.Gsm", NULL, CP_UTF8);
$objGsm->LogFile = sys_get_temp_dir()."Gsm.log";
//Windows default: 'C:\Windows\Temp\Gsm.log'
//Form submitted
$obj;
$strMessageReference;
$objSmsMessage = new COM("AxSms.Message", NULL, CP_UTF8);
$objSmsConstants = new COM("AxSms.Constants" , NULL, CP_UTF8);
$strName = 'Modem';
$strPincode = '';
$strRecipient = '$number';
$iDeviceSpeed = '0';
$objGsm->Clear();
$objGsm->LogFile = '';
$objGsm->Open($strName, $strPincode, $iDeviceSpeed);
if ($objGsm->LastError != 0){
$strResult = $objGsm->LastError . ": " . $objGsm->GetErrorDescription($objGsm->LastError);
$objGsm->Close();
}
else{
//Message Settings
$objSmsMessage->Clear();
$objSmsMessage->ToAddress = $to;
$objSmsMessage->Body = $message;
$objSmsMessage->DataCoding = $objSmsConstants->DATACODING_UNICODE;
//Send the message !
$obj = $objSmsMessage;
$objGsm->SendSms($obj, $objSmsConstants->MULTIPART_ACCEPT, 0);
$objSmsMessage = $obj;
$strResult = $objGsm->LastError . ": " . $objGsm->GetErrorDescription($objGsm->LastError);
$objGsm->Close();
}
}
Iveはいつもvar abc = '<?php $ var =' xyz 'を作成して運が良かった。 ?> '; – Kray
@Leviしかしこれは1つの変数だけでなく、コード全体です。 – learningbyexample
var abc = '<?php $ var =' inservert code here '?>'; ? – Kray