我试图将Excel数据上传到php中的数据库,但出现警告错误。
<?php
$datepub = date("Y-m-d",strtotime($conn,$Row[6]));
答案 0 :(得分:0)
请检查php手册。
int strtotime ( string $time [, int $now = time() ] )
您不能将对象传递到其中,它必须是如下所示的日期字符串。
echo date("jS F, Y", strtotime("11.12.10"));