警告:strtotime()期望参数1为字符串,PHP中给定的对象

时间:2018-08-06 11:00:50

标签: php mysql mysqli

我试图将Excel数据上传到php中的数据库,但出现警告错误。

<?php
$datepub = date("Y-m-d",strtotime($conn,$Row[6]));

1 个答案:

答案 0 :(得分:0)

请检查php手册。

int strtotime ( string $time [, int $now = time() ] )

您不能将对象传递到其中,它必须是如下所示的日期字符串。

echo date("jS F, Y", strtotime("11.12.10"));