这是我的代码:
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')”,但是这两个代码中都有很多函数,所以对两个页面上的所有函数都这样做是不切实际的。
这个网站是预先建立的,我正试图把它变成一个适合移动设备的网站。因此,重写整个脚本并非易事。