日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

phpstrpos不存在_PHP主页显示方法不存在。这是什么问题,大神帮我看看

發布時間:2024/9/30 49 豆豆
生活随笔 收集整理的這篇文章主要介紹了 phpstrpos不存在_PHP主页显示方法不存在。这是什么问题,大神帮我看看 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

該樓層疑似違規已被系統折疊?隱藏此樓查看此樓

下面是Index.php代碼

if (!function_exists('getallheaders')) {

function getallheaders()

{

foreach ($_SERVER as $name => $value) {

if ($name == 'HTTP_X_CALL') {

$headers['x-call'] = $value;

} elseif ($name == 'HTTP_X_FORM_CALL') {

$headers['x-form-call'] = $value;

} elseif (substr($name, 0, 5) == 'HTTP_') {

$headers[str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5)))))] = $value;

}

}

return $headers;

}

}

require 'xy_lib/core/DBAccess.class';

require 'xy_lib/core/Object.class';

require 'xy_action/xy_default/WebBase.class.php';

require 'xy_action/xy_default/WebLoginBase.class.php';

require 'xy_config.php';

$para = array();

if (isset($_SERVER['PATH_INFO'])) {

$para = explode('/', substr($_SERVER['PATH_INFO'], 1));

if ($control = array_shift($para)) {

if (count($para)) {

$action = array_shift($para);

} else {

$action = $control;

$control = 'index';

}

} else {

$control = 'index';

$action = 'main';

}

} else {

$control = 'index';

$action = 'main';

}

$control = ucfirst($control);

if (strpos($action, '-') !== false) {

list($action, $page) = explode('-', $action);

}

$file = $conf['action']['modals'] . $control . '.class.php';

//print_r($file); exit;

if (!is_file($file))

notfound('找不到控制器');

try {

require $file;

}

catch (Exception $e) {

print_r($e);

exit;

}

if (!class_exists($control))

notfound('找不到控制器1');

$jms = new $control($conf['db']['dsn'], $conf['db']['user'], $conf['db']['password']);

$jms->debugLevel = $conf['debug']['level'];

if (!method_exists($jms, $action))

notfound('方法不存在');

$reflection = new ReflectionMethod($jms, $action);

if ($reflection->isStatic())

notfound('不允許調用Static修飾的方法');

if (!$reflection->isFinal())

notfound('只能調用final修飾的方法');

$jms->controller = $control;

$jms->action = $action;

$jms->charset = $conf['db']['charset'];

$jms->cacheDir = $conf['cache']['dir'];

$jms->setCacheDir($conf['cache']['dir']);

$jms->actionTemplate = $conf['action']['template'];

$jms->prename = $conf['db']['prename'];

$jms->title = $conf['web']['title'];

if (method_exists($jms, 'getSystemSettings'))

$jms->getSystemSettings();

if ($jms->settings['switchWeb'] == '0') {

$jms->display('close-service.php');

exit;

}

if (isset($page))

$jms->page = $page;

if ($q = $_SERVER['QUERY_STRING']) {

$para = array_merge($para, explode('/', $q));

}

if ($para == null)

$para = array();

$jms->headers = getallheaders();

if (isset($jms->headers['x-call'])) {

// 函數調用

header('content-Type: application/json');

try {

ob_start();

echo json_encode($reflection->invokeArgs($jms, $_POST));

ob_flush();

}

catch (Exception $e) {

$jms->error($e->getMessage(), true);

}

} elseif (isset($jms->headers['x-form-call'])) {

// 表單調用

$accept = strpos($jms->headers['Accept'], 'application/json') === 0;

if ($accept)

header('content-Type: application/json');

try {

ob_start();

if ($accept) {

echo json_encode($reflection->invokeArgs($jms, $_POST));

} else {

json_encode($reflection->invokeArgs($jms, $_POST));

}

ob_flush();

}

catch (Exception $e) {

$jms->error($e->getMessage(), true);

}

} elseif (strpos($jms->headers['Accept'], 'application/json') === 0) {

// AJAX調用

header('content-Type: application/json');

try {

//echo json_encode($reflection->invokeArgs($jms, $para));

echo json_encode(call_user_func_array(array(

$jms,

$action

), $para));

}

catch (Exception $e) {

$jms->error($e->getmessage());

}

} else {

// 普通請求

header('content-Type: text/html;charset=utf-8');

//$reflection->invokeArgs($jms, $para);

call_user_func_array(array(

$jms,

$action

), $para);

}

$jms = null;

function notfound($message)

{

header('content-Type: text/plain; charset=utf8');

header('HTTP/1.1 404 Not Found');

die($message);

}

?>

總結

以上是生活随笔為你收集整理的phpstrpos不存在_PHP主页显示方法不存在。这是什么问题,大神帮我看看的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。