Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
178 views

array_map vs loop and operation

Using: for($i=1; $i<= 10000; ++$i) { $arrayOfNumbers[] = rand(1, 99999); } Can some explain why there is such a speed difference: array_map(array($maxHeap, 'insert'), $arrayOfNumbers); # ...
5
votes
2answers
239 views

Call methods of objects in array using array_map?

Suppose I have simple class like: class MyClass { private $_prop; public function getProp() {return $this->_prop;} [....] } Now what I want to do somwhere not in scope of MyClass is to get ...
5
votes
4answers
359 views

array_map with str_replace

Is it possible to use array_map in conjunction with str_replace without calling another function to do the str_replace? For example: array_map(str_replace(' ', '-', XXXXX), $myArr);
3
votes
3answers
32 views

jquery map convert list of dashed properties into object

I would like to convert something like this (used in eg. in class): var classname = "username_admin color_red strength_good" into: myvalues = { username: 'admin', color: 'red', ...
2
votes
2answers
48 views

Alternatives to Pass both Key and Value By Reference:

Can someone explain to me why you can't pass a key as reference? Ex: if(is_array($where)){ foreach($where as &$key => &$value){ $key = sec($key); $value = sec($value); ...
2
votes
2answers
58 views

Trying to understand odd variant of a PHP array_map() call

I'm trying to understand some code I found the open source oauth-php library. The relevant code snippet is: protected function sql_printf ( $args ) { $sql = array_shift($args); if ...
2
votes
1answer
67 views

a better way to do this (probably using array_map)

I have this arrays : $a = array( 'key1' => array ( 'k1'=>'value1', 'k2'=>'value2' , 'k3'='' ), 'key2' => array ( 'k1'=>'value1', 'k2'=>'value2' , 'k3'='' ), ... ...
2
votes
3answers
505 views

array_map and classes question

Good morning I am trying to create a class to handle arrays but i can't seem to get array_map() to work in it. <?php //Creat the test array $array = array(1,2,3,4,5,6,7,8,9,10); //create the test ...
2
votes
1answer
593 views

php - array map using public function callback within class

class something{ public function add_val( $val ){ $array = array(); foreach( $val as $value ) { $array[] = static::$post[${$value}]; } return $array; } pulblic ...
2
votes
5answers
315 views

empty() not a valid callback?

I'm trying to use empty() in array mapping in php. I'm getting errors that it's not a valid callback. $ cat test.php <? $arrays = array( 'arrEmpty' => array( '','','' ), ); ...
1
vote
1answer
28 views

array_map to simplify array, what am I doing wrong?

I have a function which returns an array of arrays when querying a table, each 'subarray' is a row in the table, now I want to create a 'fetchColumn' function to transform my resulting array from ...
1
vote
3answers
27 views

array_map and append string to elements of array

I have an array like this: $a = array('aa','bb','cc','dd'); I want to add 'rq' string at the begging of all the elements of array. Is it possible to do it with calling array_map() on this array?
1
vote
2answers
55 views

Is there a way to send parameters into a callback function without creating my own function first?

I have an array of values that I would like to run through htmlspecialchars but with an argument such as this: $param = htmlspecialchars($param, ENT_QUOTES); The problem is, I have an array of ...
1
vote
5answers
77 views

implode php array into formatted text

I have this array: array(122) { ["1AB168820010"]=> array(3) { ["MACHINE_NAME"]=> "L1XP2A" ["FEEDER_SLOT"]=> "114" ["REJECT_RATE"]=> float(0.0394) ...
1
vote
3answers
66 views

Use array_map to return an array of instantiated objects?

Say I have the following: class Thing { function __construct($id) { // some functionality to look up the record and initialize the object. return $this; } } Now given an array of ...
1
vote
3answers
496 views

setting scope of array_map php

hey all, i use array_map from time to time to write recursive methods. for example function stripSlashesRecursive( $value ){ $value = is_array($value) ? array_map( ...
0
votes
1answer
26 views

PHP error. Why is “variable undfined” inside array_map?

I am using array_map function in my php application. I defined the array_map function like this. $ratingID = $this->db->insert_id(); $rated_item_array = array_map(function ($a) { return ...
0
votes
2answers
19 views

php use array as array_map first argument

I can't kind of make out the first return statement, can anybody help to explain how it works? the array_map accept a function for the first arg, but here is an array. and how does array(&$this, ...
0
votes
3answers
35 views

Array_Map using multiple native callbacks?

I want to run 3 native functions on the same array: trim, strtoupper and mysql_real_escape_string. Can this be done? Trying to pass an array as a callback like this isn't working: $exclude = ...
0
votes
1answer
31 views

Issue with array_map callback

At first I had this (work in wamp but not in my web server) $ids = array_map(function($item) { return $item['user_id']; }, $data['student_teacher']);` So I try to convert the code to that but ...
0
votes
1answer
38 views

ListOrderedMap/ArrayMap like data structure in Javascript

I'm looking for a JavaScript data structure like ListOrderedMap: http://commons.apache.org/collections/apidocs/org/apache/commons/collections/map/ListOrderedMap.html E.g. It needs to be able add an ...
0
votes
1answer
30 views

Getting object member variable in one line of code from an array of objects in php

I am caught in a situation where I need to get values of a member variable of instances of an object which are in an array. Is there any way to use a function like array_map to get them in one line ...
0
votes
2answers
77 views

Is the 'use' keyword available for function closures pre 5.3?

Hell, I can't even FIND the documentation for 'use' on the PHP site (other than in the context of namespaces - nice job ambiguating a keyword BTW). Can someone confirm that function() use ($foo) { } ...
0
votes
3answers
159 views

PHP array_map help please

I am trying to create a simple tag cloud in PHP. The following is what I have so far but its not working because I have no idea what I'm doing. For each record in the database, tags are stored like ...
0
votes
1answer
58 views

array_map cant found function in bootstap

i created a function in bootsrap file and i want call it with array_map function. but it show me this error : Warning: array_map() expects parameter 1 to be a valid callback, function 'rootCreator' ...
0
votes
2answers
371 views

trim() function : How to avoid empty string return if the argument is unset/null variable?

I have a problem when using the trim() function in php. //Suppose the input variable is null. $input = NULL; echo (trim($input)); As shown above, the output of the codes is empty string if the ...
0
votes
4answers
87 views

in php how do i make an like array(“one”,“two”,“three”) into $somearray[“one”][“two”][“three”]?

I would like to take an array, say: array("one", "two", "three"); and make it into an array of arrays, like: $someArray["one"]["two"]["three"]; The array of arrays ($someArray) would have to be ...
0
votes
5answers
163 views

using array_map to test values?

Is it possible to use array_map() to test values of an array? I want to make sure that all elements of an array are numeric. I've tried both $arrays = array( array(0,1,2,3 ) , ...
0
votes
2answers
263 views

PHP: Create array of arrays, ignoring empty arrays

I need to create an array of arrays. I have been using array_map(null,$a,$b,$c) to do this and it works fine, however, it doesn't work if one of the mapped arrays doesn't exist. To get around this ...
0
votes
5answers
1k views

PHP: Apply a function to multiple variables without using an array

I have a function (for ease, I'll just use count()) that I want to apply to maybe 4-5 different variables. Right now, I am doing this: $a = count($a); $b = count($b); $c = count($c); $d = count($d); ...