Commit db9669bb authored by Nico Schallehn's avatar Nico Schallehn

test

parent 6d4ec50c
......@@ -139,8 +139,8 @@ class Media {
$array["Quality"] = "SD";
}
$array["imdbID"] = substr($Filename,strripos( $Filename,"(")+1,7);
$array["name"] = substr($Filename, 0, strripos( $Filename,"(")+1);
$array["Endung"] = substr($Filename,strripos( $Filename,".")+1);
$array["name"] = trim(substr($Filename, 0, strripos( $Filename,"(")));
$array["Endung"] = trim(substr($Filename,strripos( $Filename,".")+1));
strripos( $Filename,".");
var_dump($array);
......
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