要設置 PHP Highlight 的語法,請遵循以下步驟:
highlight.php
的新文件。highlight.php
文件并輸入以下代碼:<?php
// 設置內容類型為 text/html
header('Content-Type: text/html; charset=utf-8');
// 從 $_POST 或 $_GET 獲取代碼
if (isset($_POST['code'])) {
$code = $_POST['code'];
} elseif (isset($_GET['code'])) {
$code = $_GET['code'];
} else {
$code = '';
}
// 使用 highlight_string() 函數高亮顯示 PHP 代碼
$highlightedCode = highlight_string($code, true);
// 輸出高亮顯示的代碼
echo "<pre>{$highlightedCode}</pre>";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP Syntax Highlighter</title>
</head>
<body>
<h1>PHP Syntax Highlighter</h1>
<form action="highlight.php" method="post">
<textarea name="code" rows="20" cols="80"></textarea>
<br>
<input type="submit" value="Highlight Code">
</form>
</body>
</html>
這樣,你就可以使用 highlight.php
腳本為 PHP 代碼設置語法高亮。