Tagged Questions

3
votes
3answers
184 views

PHP manipulating multidimensional array values

I have a result set as an array from a database that looks like: array ( 0 => array ( "a" => "something" "b" => "something" "c" => "something" ) 1 ...
3
votes
1answer
271 views

PHP array manipulation

i have this array: Array ( 0 => "3_some val", 1 => "1_some other val", 2 => "0_val", 3 => "2_value", 4 => "4_other value" ) considering ...
2
votes
3answers
154 views

How to convert array key values into percentages

So i've got an array that looks something like of: Array ( [Safari] => 13 [Firefox] => 5 ) How do i a make a new array that looks like : Array ( [Safari] => 72.2% [Firefox] => 27.7% ) ...
2
votes
3answers
4k views

Grouping arrays in PHP

I have an array of 200 items. I would like to output the array but group the items with a common value. Similar to SQL's GROUP BY method. This should be relatively easy to do but I also need a count ...
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?
0
votes
1answer
27 views

parse delimited string into associative array

I'm just optimising my code and if there is a function that does something like this, i can get rid of my own There are duplicates for parsing query strings but the string I'm paring is in this ...
0
votes
1answer
108 views

PHP - Search array in array

I have tried googling for the past one hour straight now and tried many ways to search for an array, in an array. My objective is, to find a keyword in the URL, and the keywords are in a txt file. ...
0
votes
1answer
97 views

php: parsing and converting array structure

I need to convert one array structure into another array structure. I hope someone will find it worthy their time to show how this could be done in a simple manner. It's a little above my array ...
0
votes
2answers
222 views

PHP Method to Concatenate Array and String

I am building a PHP class to handle database management, and I wondered if it was possible to build a method which could receive a string with a concatenated array as one variable. For example, take ...
0
votes
1answer
226 views

Searching for a substring inside an array in php

Hi I would like to know if there is a good algorithm to the search of a substring inside an array that is inside another array, I have something like: Array( [0] => Array( ...
0
votes
1answer
84 views

A Simple PHP Array Manipulation

how would you turn this array: array( 0 => Title1, 1 => Title2, 3 => Address1, 4 => Address2, ) to this array: array ( 0 => array( 'title' => ...
0
votes
3answers
207 views

How do I “add” strings in PHP - not concatenate, but “add” them. (as if each character was a base 36 numbers)

Unfortunately I inherited some code (c/c++) that does some string manipulation and now I need to copy/port that over to php so this functionality can be accessed over the internets. Specifically ...