これが私のコードです:
if (ismobile()) {
// Include mobile version of this page
require_once("mobile_signup.php");
// Die so it will not include desktop version below mobile version
die();
}
function this_is_a_function() {
// Some code here
}
// Desktop version of code here
mobile_signup.php にも「this_is_a_function()」という関数が宣言されています。どうすればこれを適切に行うことができますか?「function_exists('this_is_a_function')」があることに気付きましたが、これらのコードの両方に多くの関数があるため、両方のページのすべての関数に対してこれを行うのは現実的ではありません。
このサイトは事前に構築されており、モバイル フレンドリーなサイトに変えようとしています。したがって、スクリプト全体を書き直すのは簡単なことではありません。