if ($opts['width'] == 'fs' || $opts['height'] == 'fs' || $opts['ratio'] == 'fs') {
    var_dump($opts); // result of this see bellow
}
Result of var_dump($opts) inside (!) if-statement:
array(3) {
   'width' => int(200)
   'height' => int(0)
   'ratio' => int(0)
}
How is this possible? None of the array's values is (stirng) fs?
 
     
     
    