これに関数を含めることができない理由を理解しようとしています。私はそれを作ろうとしているので$client
、リクエスト文字列に入ります。http://test.com/next.xml?file=$client&test=againtest
$client
私のデータベースからのテキストとして定義されています。
function update($pro){
$request = 'http://test.com/next.xml?file='.$client'&'.'test='.urlencode($pro);;
$postargs = 'status='.urlencode($pro);
return $this->process($request,$postargs);
}
これを行う特定の方法はありますか?これで PHP エラーは発生しませんが、正しく動作しません。削除'.$client.'
してプレーンテキストに置き換えるとtext
機能しますが、関数として含めると機能しません。