1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00

Some improvements to combine sites

This commit is contained in:
daniel 2020-05-08 14:14:22 -03:00
parent 2b62335d5e
commit f5d738c7ec
5 changed files with 119 additions and 19 deletions

View file

@ -3016,4 +3016,10 @@ function isToShowDuration($type){
}else{
return true;
}
}
function _dieAndLogObject($obj, $prefix=""){
$objString = json_encode($obj);
_error_log($prefix.$objString);
die($objString);
}