diff --git "a/\347\216\213\347\217\251\345\256\207/20220516-php\345\207\275\346\225\260.md" "b/\347\216\213\347\217\251\345\256\207/20220516-php\345\207\275\346\225\260.md"
new file mode 100644
index 0000000000000000000000000000000000000000..17bde9deb0dc5973c900c49e906e46d5508df7a1
--- /dev/null
+++ "b/\347\216\213\347\217\251\345\256\207/20220516-php\345\207\275\346\225\260.md"
@@ -0,0 +1,62 @@
+# 作业
+
+```php+HTML
+';
+echo strtoupper($str);
+echo '
';
+$a =substr($str,3,9);
+echo $a;
+echo '
';
+echo chop($str);
+
+
+刘奇','age'=>20,'sex'=>'女';)
+ foreach ($arr as $key => $s){
+ echo $key.= $s;
+}
+//5、写一段代码,查找数组中是否存在某一个指定的元素,如果存在则返回数组的索引。
+$arr =array('name=>刘奇','age'=>20,'sex'=>'女';)
+ $a=array_search(20,$arr);
+echo $a;
+```
+