在PHP中是否有类似Python的str()的东西

时间:2018-10-02 13:51:44

标签: php laravel

在PHP中是否有类似Python的str()和execute()。

在python中,我们具有以下代码:

 car_date="2018-08-0"+str(car_dealership)
 car.execute("INSERT INTO cars(car_id,car_price,car_dealership_id) VALUES ('"+car_id+"','"+car_price+"',2,'"+str(car_dealership)+"')");
 db2.commit()

在php(Laravel)中怎么办

1 个答案:

答案 0 :(得分:0)

strval()的工作方式类似于str()

对于.execute,您将使用类似...

DB::connection('mysql')->statement("<sql command here>");