WikiGrammarGuide

跳转到: 导航, 搜索

语法高亮

HTML
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>HTML 范例</title>
	</head>
	<body>
		<h1>Hello,Mediawiki</h1>
	</body>
</html>


Javascript
function add(a, b){
	return a + b;
}
add(3, 5);


Linux Shell
mkdir /home/path1
ls -al /var


PHP
<?php
session_start();

ini_set('display_errors', true);
error_reporting(E_ALL);

include_once('phpsdk/config.php');
include_once('phpsdk/saetv2.ex.class.php');
include_once('Mobile_Detect/Mobile_Detect.php');

$o = new SaeTOAuthV2( WB_AKEY , WB_SKEY );
$access_token = "";
$token = "";

// 解析应用框架传过来的 access_token
try{
	$appkey = WB_AKEY;
	$signed = $_POST["signed_request"];
	if(isset($signed)){
		$oauth = $o->parseSignedRequest( $signed );
		if(isset($oauth["oauth_token"])){
			$access_token = $oauth["oauth_token"];
			// 对 access_token 进行 MD5 运算
			$token = md5(WB_SKEY . "_" . $access_token);
		}
	} else {
		$code_url = $o->getAuthorizeURL(WB_CALLBACK_URL);
	}

}catch(Exception $e){}
// 这段代码没有指定任何语言
if(scope.$isLogin()){
	return true;
} else {
	$.common.login.login.showLoginLayer({
		success: function() {
			feedback.check();
			$.common.wiki.reloadTop();
		}
	});
	return fasle;
}