mongo-lite icon indicating copy to clipboard operation
mongo-lite copied to clipboard

create_function deprecated in php 7.2

Open stephanedemotte opened this issue 7 years ago • 0 comments

create_function in Database.php on line 82 deprecated in php 7.2

I try to use anomymous function, but i suck 🗡

:: edit

            $this->document_criterias[$id] = function($document) use ($criteria) {
              $str = UtilArrayQuery::buildCondition($criteria);
              return eval("return $str;");
            };

quick fix :)

stephanedemotte avatar Jan 10 '18 17:01 stephanedemotte