diff --git "a/\350\214\203\351\233\250\346\232\204/20220517-\345\257\271\350\261\241\347\261\273.md" "b/\350\214\203\351\233\250\346\232\204/20220517-\345\257\271\350\261\241\347\261\273.md"
new file mode 100644
index 0000000000000000000000000000000000000000..5df38cf8037f62c2b8049de54fc83d4678be6381
--- /dev/null
+++ "b/\350\214\203\351\233\250\346\232\204/20220517-\345\257\271\350\261\241\347\261\273.md"
@@ -0,0 +1,134 @@
+```php
+brand;
+ }
+
+ /**
+ * @param mixed $brand
+ */
+ public function setBrand($brand)
+ {
+ $this->brand = $brand;
+ }
+
+ /**
+ * @return mixed
+ */
+ public function getPrice()
+ {
+ return $this->price;
+ }
+
+ /**
+ * @param mixed $price
+ */
+ public function setPrice($price)
+ {
+ $this->price = $price;
+ } // 价格
+
+
+}
+
+$ft = new Car();
+$ft->setBrand("品牌:"."大众").$ft->setPrice("价钱:"."300000");
+echo $ft->getBrand();
+echo "
";
+echo $ft->getPrice();
+echo "