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.
このコードでリダイレクト/ロードする方法を知っています」
header('Location: http://www.someURL.com');
しかし、文字列での使用はどうですか?
$edit_invoice = $invoice->invoice->links->edit; header( 'Location: '.$edit_invoice.' ) ;
ご参考までに、FreshbooksAPIライブラリを使用しています。
余分なアポストロフィがあります。header( '場所: '.$edit_invoice ) ;
関数の呼び出しの最後に新しい文字列を開始しているため、現在文字列バージョンを設定している方法は機能しませんheader()。
header()
header('Location: ' . $edit_invoice);
$edit_invoice有効なリンクである限り、機能するはずです。
$edit_invoice