From 8d539a774dbf9bbd7ead0471de92cfe05f6af3f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=AA=9B=E5=A6=82?= <1271678381@qq.com> Date: Tue, 10 May 2022 16:54:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../20220510-PHP.md" | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 "\345\220\264\345\252\233\345\246\202/20220510-PHP.md" diff --git "a/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" "b/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" new file mode 100644 index 0000000..7667b42 --- /dev/null +++ "b/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" @@ -0,0 +1,37 @@ +# PHP +php特点: + 1.开源免费 + 2.跨平台性 + 3.面向对象 + 4.支持多种数据库 + 5.快捷性 + + 可以不写 + +var_dump(变量名),返回变量的类型和长度和值 + +true:取消严格区分大小写 + +任务栏—任务管理器—服务—启动Php-cgi—启动Nginx + +空格:  +换行:
+加粗: + +```php +《静夜诗》"; + echo "
"; + echo "               李白"; + echo "
"; + echo "床前明月光,疑是地上霜。"; + echo "
"; + echo "举头望明月,低头思故乡。"; +``` \ No newline at end of file -- Gitee From e2a7ad78b85f255870cce57d716f202af19dbdbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=AA=9B=E5=A6=82?= <1271678381@qq.com> Date: Tue, 10 May 2022 17:10:54 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E3=80=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\345\220\264\345\252\233\345\246\202/20220510-PHP.md" | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git "a/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" "b/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" index 7667b42..d43e1e0 100644 --- "a/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" +++ "b/\345\220\264\345\252\233\345\246\202/20220510-PHP.md" @@ -27,11 +27,11 @@ true * Date: 2022/5/10 * Time: 16:03 */ - echo "           《静夜诗》"; + echo "

《静夜诗》"; echo "
"; - echo "               李白"; + echo "李白"; echo "
"; echo "床前明月光,疑是地上霜。"; echo "
"; - echo "举头望明月,低头思故乡。"; + echo "举头望明月,低头思故乡。

"; ``` \ No newline at end of file -- Gitee