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.
$mainframe->redirect(‘XXXXXXXXXXXX’);
定義したのに joomla で動作しない
global $mainframe;
そのようなコードを使用してください
global $mainframe; $redirect = "xxx.php"; $mainframe->redirect($redirect);
また
global $mainframe; $mainframe->redirect($redirect);