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.' ) ;
如果您想知道,我正在使用 Freshbooks API 库。
你有一个额外的撇号。header('位置:'.$edit_invoice);
您现在设置字符串版本的方式不起作用,因为您在调用header()函数结束时开始了一个新字符串。
header()
header('Location: ' . $edit_invoice);
应该可以,只要$edit_invoice是有效的链接。
$edit_invoice