Neden bu işi yapar:
function myfunction($v) {
$query = $v['host'] == '1';
return ( $query );
}
$output = array_filter($recordset,myfunction);
print_r($output);
Değişkenler ile aynı şeyi gerçekleştirmek için çalışır, bu komut dosyası, değil mi oysa?
$column1 = 'host';
$value1 = 1;
$query1 = '$v[\''.$column1.'\'] == '.$value1;
function myfunction($v) {
$query = $GLOBALS['query1'];
return ( $query );
}
$output = array_filter($recordset,myfunction);
print_r($output);
Herhangi bir yardım büyük olurdu. Teşekkürler!