Commit 9a529814 by Phạm Văn Đoan

cập nhật ghi log theo ngày và đổi "Đang Cập Nhật" thành "NIA"

parent a077d701
......@@ -423,7 +423,7 @@ class TrackRepository extends BaseRepository
}
}
if (empty($tracks[$track['id']])) {
$tracks[$track['id']] = 'Đang Cập Nhật';
$tracks[$track['id']] = 'NIA';
}
}
......@@ -435,37 +435,5 @@ class TrackRepository extends BaseRepository
return $tracks;
}
public function getNctTrackListen($inserted)
{
$tracks = [];
//
if (count($inserted) > 0) {
foreach ($inserted as $key => $track) {
$url = $track['link_nct'];
//$dom = new Htmldom($url);
$dom = file_get_contents($url);
//print_r($dom);
//sleep(5);
/* Lấy tên bài hát ------------------------------------------------------------------------------------------ */
/*$element_track_title = 'div.show_listen span';
foreach ($dom->find($element_track_title) as $data) {
$tracks[$track['id']] = str_replace([], [], $data->innertext);
}*/
}
return $tracks;
} else {
return null;
}
}
}
......@@ -120,7 +120,7 @@ return [
|
*/
'log' => env('APP_LOG', 'single'),
'log' => env('APP_LOG', 'daily'),
'log_level' => env('APP_LOG_LEVEL', 'debug'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment