diff --git "a/\350\260\255\346\225\217\345\215\216/20220515-PHP\347\273\203\344\271\240.md" "b/\350\260\255\346\225\217\345\215\216/20220511-PHP\347\273\203\344\271\240\345\276\252\347\216\257\344\270\216\350\277\220\347\256\227\347\254\246\347\273\203\344\271\240.md"
similarity index 100%
rename from "\350\260\255\346\225\217\345\215\216/20220515-PHP\347\273\203\344\271\240.md"
rename to "\350\260\255\346\225\217\345\215\216/20220511-PHP\347\273\203\344\271\240\345\276\252\347\216\257\344\270\216\350\277\220\347\256\227\347\254\246\347\273\203\344\271\240.md"
diff --git "a/\350\260\255\346\225\217\345\215\216/20220516-PHP\346\225\260\347\273\204\344\270\216\345\207\275\346\225\260\347\273\203\344\271\240.md" "b/\350\260\255\346\225\217\345\215\216/20220516-PHP\346\225\260\347\273\204\344\270\216\345\207\275\346\225\260\347\273\203\344\271\240.md"
new file mode 100644
index 0000000000000000000000000000000000000000..09895296712a8ca0820c6549e731ed66e60e4ccd
--- /dev/null
+++ "b/\350\260\255\346\225\217\345\215\216/20220516-PHP\346\225\260\347\273\204\344\270\216\345\207\275\346\225\260\347\273\203\344\271\240.md"
@@ -0,0 +1,53 @@
+```php+HTML
+";
+
+//2、 至少对3个字符串函数进行应用
+$str= " hello boy ";
+echo strtoupper($str)."
";
+echo trim($str)."
";
+echo ltrim($str);
+echo "