I have some code that has been written in for php 5.3.0 using the USE function within PHP
can someone help me change this to work for 5.2.9?
$available = array_filter($objects, function ($object) use ($week) {
return !in_array($object, $week);
});
thanks for the help