diff --git a/docs/ini.html b/docs/ini.html index f0aa2c65..e2226235 100644 --- a/docs/ini.html +++ b/docs/ini.html @@ -191,6 +191,32 @@
序列意思
\\\ (单个反斜杠,转义转义字符)
\'撇号
\"双引号
\0空字符
\a铃声/警报/声音
\b退格键,某些应用程序的贝尔字符
\t制表符
\r回车
\n换行
\;分号
\#数字符号
\=等号
\:冒号
\x????十六进制代码点的 Unicode 字符对应于 ????
+

数组

+
[section]
+domain = jaywcjlove.github.io
+array[]=first value
+array[]=second value
+
+

与下面👇 JSON 大致相同

+
{
+  "section": {
+    "domain": "jaywcjlove.github.io",
+    "array": [
+      "first value", "second value"
+    ]
+  }
+}
+
+

解释器

+

另见