本文整理汇总了PHP中oauth_client_class::Output方法的典型用法代码示例。如果您正苦于以下问题:PHP oauth_client_class::Output方法的具体用法?PHP oauth_client_class::Output怎么用?PHP oauth_client_class::Output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oauth_client_class
的用法示例。
在下文中一共展示了oauth_client_class::Output方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: HtmlSpecialChars
*/
$success = $client->Finalize($success);
}
/*
* If the exit variable is true, the script must not output anything
* else and exit immediately
*/
if ($client->exit) {
exit;
}
if ($success) {
/*
* The Output function call is here just for debugging purposes
* It is not necessary to call it in real applications
*/
$client->Output();
} else {
/*
* If there was an unexpected error, display to the user
* some useful information
*/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>OAuth client error</title>
</head>
<body>
<h1>OAuth client error</h1>
<pre>Error: <?php
echo HtmlSpecialChars($client->error);