print_emoji_detection_script

函式
print_emoji_detection_script ( No parameters )

print_emoji_detection_script: 這個動作用來列印一個檢測瀏覽器是否支援emojis的指令碼。

列印內聯Emoji檢測指令碼,如果它還沒有被列印的話。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function print_emoji_detection_script() {
static $printed = false;
if ( $printed ) {
return;
}
$printed = true;
_print_emoji_detection_script();
}
function print_emoji_detection_script() { static $printed = false; if ( $printed ) { return; } $printed = true; _print_emoji_detection_script(); }
function print_emoji_detection_script() {
	static $printed = false;

	if ( $printed ) {
		return;
	}

	$printed = true;

	_print_emoji_detection_script();
}

常見問題

FAQs
檢視更多 >