if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW']) ||
!($_SERVER['PHP_AUTH_USER'] == 'outsider' && $_SERVER['PHP_AUTH_PW'] == '123456')) {
header('WWW-Authenticate: Basic realm="WEBSERVICE"');
header("HTTP/1.0 401 Unauthorized");
echo "You must enter a valid login ID and password to access this resource/n";
die;
}
class test {
function show($one, $two) {
return $one + $two;
}
function user_info() {
$user_info = array(
'name' => 'Outsider',
'sex' => '男',
'email' => 'outsider@outsiderla.me',
'tel' => '1369*******',
);
return json_encode($user_info);
}
}
$server = new SoapServer(null, array('uri' => 'server.php', 'location' => 'http://demo.test.com/server.php'));
$server->setClass('test');
//$server->addFunction('getUserInfo');
$server->handle();
?>
|