问题描述
explode 换行\r\n本地测试可以,上传到服务器不行
直接用这种,本地测试也没有问题。但是上传到服务器不行
$content = file_get_contents($file);
$rows = explode("\r\n", $content);
$rowsLen = count($rows);
if ($rowsLen > 0) {
问题描述
explode 换行\r\n本地测试可以,上传到服务器不行
直接用这种,本地测试也没有问题。但是上传到服务器不行
$content = file_get_contents($file);
$rows = explode("\r\n", $content);
$rowsLen = count($rows);
if ($rowsLen > 0) {