Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
273 views

Can a PHP callback accept its parameter(s) by reference?

I've tested the following and it works on both PHP 5.2 and 5.3, however, it's not documented anywhere as far as I can see so I'm evaluating its use. I have a function in a class called isValid, this ...
3
votes
2answers
80 views

PHP: How to identify AND CHANGE duplicate values in an array?

OK, there are a lot of examples of duplicate detection and removal in php arrays, using array_unique() etc but what if you want to find dups, modify them, check again in a loop until all dups are now ...
3
votes
3answers
92 views

PHP - How to remove empty entries of an array recursively?

I need to remove empty entries on multilevel arrays. For now I can remove entries with empty sub-arrays, but not empty arrays... confused, so do I... I think the code will help to explain better... ...
3
votes
3answers
92 views

How do I sort and filter an in-memory array of ORM objects in ColdFusion?

Let's say I have a Store entity that contains a collection of Products. So I grab my Store and Products like this: var store = entityLoadByPK("Store", 13); var products = store.getProducts(); Now ...
2
votes
3answers
60 views

Array_filter and empty()

Warning: array_filter() expects parameter 2 to be a valid callback, function 'empty' not found or invalid function name.... Why is empty considered a invalid callback? $arr = ...
2
votes
4answers
51 views

php filter empty array

How to remove empty data from an array? var_dump($array); array(1) { [0]=> array(4) { [0]=> string(0) "" [1]=> string(3) "car" [2]=> string(4) ...
2
votes
5answers
74 views

error in array_filter

I have an issue here with filter_array. below is my code: $array = array("0","0","1"); function returnzero($d){ if($d=='0'){ return $d; } } $all_zeros = array_filter($array, ...
1
vote
4answers
64 views

Selectively pushing elements from array A to array C which are not present in array B

I am trying to produce an array called @names which contains the names of people who are present in allnames.txt but not in somenames.txt. My code is as follows: if(open(SKIPLIST, "somenames.txt")) ...
1
vote
1answer
59 views

Help with PHP array_filter function

Please see the following function to scan the files in a directory (Taken from here) function scandir_only_files($dir) { return array_filter(scandir($dir), function ($item) { return ...
1
vote
2answers
44 views

How to filter array values from another arrays values and return new array?

I have two arrays: $all_languages and $taken_languages. One contains all languages (like 200 or something), but second - languages that have been chosen before (from 0 to 200). I need to remove all ...
1
vote
3answers
229 views

How to run array_filter recursively in a PHP array?

Given the following array $mm Array ( [147] => Array ( [pts_m] => [pts_mreg] => 1 [pts_cg] => 1 ) [158] => Array ...
1
vote
3answers
95 views

Filtering an array in php, having both value- and key-related conditions

I'm trying to filter an array, in which the filter function is supposed to check for multiple conditions. For example, if element x starts with a capital letter, the filter function should return ...
1
vote
1answer
217 views

Why does a class that implements ArrayAccess, Iterator, and Countable not work with array_filter()?

I have the following class: <?php /* * Abstract class that, when subclassed, allows an instance to be used as an array. * Interfaces `Countable` and `Iterator` are necessary for functionality ...
1
vote
3answers
2k views

PHP - Delete Item from Hash Table (array) using array_filter

In PHP, I know there is no official way to delete items once they have been put into an array. But there must be a "best-method" solution to my problem. I believe this may lie in the array_filter ...
0
votes
4answers
26 views

array_filter returning unexpected results

I have an array that looks like this: Array ( [0] => Array ( [pizza] => Calzone [votes] => 1 [id] => 1 ) [1] => Array ( [pizza] => ...
0
votes
4answers
36 views

filter array by key

I have this little function to filter my array by keys: private function filterMyArray( ) { function check( $v ) { return $v['type'] == 'video'; } return ...
0
votes
1answer
56 views

Wordpress PHP array filter out subscribers

I am working on a wordpress dashboard plugin that is designed to display a list of subscribers in the admin dashboard in a wordpress table. Everything works correctly apart from the fact that all ...
0
votes
1answer
42 views

Array_filter in the context of an object, with private callback

I want to filter an array, using the array_filter function. It hints at using call_user_func under water, but does not mention anything about how to use within the context of a class/object. Some ...
0
votes
5answers
105 views

Replace the last comma with an & sign

I have searched everywhere but can't find a solution that works for me. I have the following: $bedroom_array = array($studio, $one_bed, $two_bed, $three_bed, $four_bed); For this example lets say: ...
0
votes
1answer
95 views

array_filter with a callback function

$thisQuestion = array_filter($pollQuestions,function($q) use ($questDataArr){ return $questDataArr[0] == $q["id"]; }); As I am using 2 variables here I was ...
0
votes
3answers
186 views

PHP create an array from the values of another arrays key?

PHP create an array ($arr2) from the values of another arrays ($arr1) key (name)? I have an array as follows: $arr1 = array(0 => array('name' => 'tom', 'age' => 22), 1 => array('name' ...
0
votes
2answers
425 views

Use NSPredicate to filter by object attribute

I have a mutable array of custom objects. I want to filter that array by attribute of the object, for example myObject.attributeOne. How can I create the NSPredicate to use with [myArrayOfObjects ...
0
votes
2answers
177 views

Error when using array_filter with static functions in class

i have a class like this class im_a_class { static function not_empty() {...} function render() { return array_filter($array,'self::not_empty') }; } this code works in php 5.3.0 but doesn't ...
0
votes
5answers
264 views

Filtering email addresses in an array -php

I have a php array containing email addresses as array(email_address1 => name1, email2 => name2) format. I need to check that emails are valid and I can foreach and foreach($arr as $email => ...