Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
8k views

Implode an array with jQuery/Javascript?

Can I implode an array in jQuery like in PHP?
9
votes
4answers
14k views

Fastest way to implode an associative array with keys

I'm looking for a fast way to turn an associative array in to a string. Typical structure would be like a URL query string but with customizable separators so I can use '&' for xhtml links or ...
7
votes
1answer
58 views

PHP: is the implode() function safe for multibyte strings?

The explode() function has a correlating multibyte-safe function in mb_split(). I don't see a correlating function for implode(). Does this imply that implode is already safe for multibyte strings?
4
votes
7answers
76 views

PHP to form string like “A, B, C, and D” from array values

Given the following array: Array ( [143] => Car #1 [144] => Car #2 [145] => Car #3 ) I am currently using this implode(', ', array_values($car_names)) to generate a string ...
4
votes
4answers
256 views

php implode (101) with quotes

Imploding a simple array would look like this $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); and that would return this lastname,email,phone great, so ...
4
votes
5answers
605 views

How can I implode an array while skipping empty array items?

Perl's join() ignores (skips) empty array values; PHP's implode() does not appear to. Suppose I have an array: $array = array('one', '', '', 'four', '', 'six'); implode('-', $array); yields: ...
4
votes
3answers
174 views

Imploding in PHP vs imploding in MySQL - which uses less cpu?

Which of these options is more optimal? imploding in MySQL $rsFriends = $cnn->Execute('SELECT CAST(GROUP_CONCAT(id_friend) AS CHAR) AS friends FROM table_friend ...
4
votes
6answers
555 views

SQL - Inserting multiple row values into a single column

I need help on a method of inserting values into a single column on different rows. Right now, I have an imploded array that gives me a value such as this: ('12', '13', '14') Those numbers are ...
4
votes
4answers
296 views

finding last entry of foreach() loop, implode not working

I loop through my array to print the articles names: <?php if ($articles) { foreach($articles as $article) { echo $article->name.", "; } // end foreach article } // end ...
4
votes
1answer
258 views

How to echo out all elements of php array at once?

hi friends I have a php array for eg. $mob_numbers= array(12345674, 12345675, 12345676,12345677); I want to eacho out all of them at once so that it appears 12345674,12345675,12345676,12345677 ...
3
votes
3answers
509 views

php implode multidimensional array to tab dilimited lines

I have a multidimensional array $BlockData[]which has 13 dimensions in it and 'n' number of array elements. I need to implode this array back to a single long string where the elements are separated ...
3
votes
5answers
526 views

Is this overkill, or good use of CakePHP's HTML helper?

I just reformatted the default layout of my CakePHP application. I eliminated as much in-line html as possible by putting almost everything inside the html helper methods. It was fun, but I'm ...
3
votes
7answers
4k views

display contents of .txt file using php

using this code <?php foreach (glob("*.txt") as $filename) { $file = $filename; $contents = file($file); $string = implode($contents); echo $string; echo ...
2
votes
2answers
168 views

I killed rvm now I have a bash message

I decided to kill rvm, using the rvm implode command. When I run cd in osx terminal I get this message: ~/projects $ cd -bash: /Users/boris/.rvm/scripts/initialize: No such file or directory ...
2
votes
3answers
88 views

Add a prefix to each item of a PHP array

I have a PHP array of numbers, which I would like to prefix with a minus (-). I think through the use of explode and implode it would be possible but my knowledge of php is not possible to actually do ...
2
votes
2answers
180 views

How to create PHP Array from Mysql

I am trying to create an array from a MySQL query that I have. This is to update facebook status' with the access tokens I have stored in my MySQL database. I am able to pull the access tokens without ...
2
votes
6answers
347 views

How to implode a vector of strings into a string (the elegant way)

I'm looking for the most elegant way to implode a vector of strings into a string. Below is the solution I'm using now: static std::string& implode(const std::vector<std::string>& ...
2
votes
2answers
1k views

Multidimensional Array PHP Implode

In terms of my data structure, I have an array of communications, with each communications_id itself containing three pieces of information: id, score, and content. I want to implode this array in ...
2
votes
5answers
775 views

Place Query Results into Array then Implode?

Basically I pull an Id from table1, use that id to find a site id in table2, then need to use the site ids in an array, implode, and query table3 for site names. I cannot implode the array correctly ...
2
votes
3answers
1k views

Trying to join a two-dimensional array in Javascript

I'm trying to convert a two-dimensional array to a string in order to store it in the localStorage array. However, there is something wrong with this code I cannot identify: for(x in array) { ...
1
vote
7answers
61 views

array_rand() array to string?

I have an array, such like: $hex = array("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"); I want to return 6 random elements as a string (eg. 1a3564): $random_color = ...
1
vote
2answers
69 views

Implode array keys only

I try to implode array keys only and every attempt is failing. What I want to achieve is to: Having: Array ( [attr_Size] => 3 [attr_Colour] => 7 ) To Get: Array ( [Size] => 3 [Colour] ...
1
vote
3answers
199 views

Insert Multiple rows using implode

I am having a hard time getting my code to work. I grasp the basic concept but can't get it to work. I have a form with multiple rows: <form action="multiscript.php" method="post" id="form"> ...
1
vote
2answers
96 views

Alternative of php´s explode/implode-functions in c#

are there a similar functions to explode/implode in the .net-framework? or do i have to code it by myself?
1
vote
4answers
57 views

implode a key with a value

How do I implode 2 values, 1 as the key and the other as the value. Say I have: $string = 'hello_world'; $arg = explode('_', $string); I now have $arg[0] and $arg[1] (as you know) How can I ...
1
vote
1answer
307 views

PHP MYSQL edit form, trying to implode/explode row to checkboxes?

I have a form that has multiple categories. They are separated by checkboxes, so one could check any number of categories that their post/story will be in. The values are stored inside a db row ...
1
vote
5answers
76 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
1answer
96 views

PHP INSERT error when imploding an array with count greater than 2

I have this weird problem when trying to INSERT a row into my mysql database. This is the idea. A range of exercise is listed and you can add a quantity and check the days you want to add this ...
1
vote
2answers
118 views

preg_split() and implode() newbie help please (trying to do tags right)

I am using some ready-made code and it was using implode & explode functions to assign tags to photos, tags users typed in. It was not doing it right though, as if you tried a two word tag, it was ...
1
vote
1answer
169 views

mysql php implode row for links?

Not sure if there a way of doing this, but I can insert multiple categories into MYSQL, using : GetSQLValueString(implode($_POST['r_category'],", "), "text"), So then when I echo: <?php echo ...
1
vote
4answers
123 views

php implode breaks on spaces

I have an array of strings, and these strings have spaces in them. For example: $arr = array('bob', 'john smith', 'grease monkey', 'etc'); Why is it when I try to $str = implode('|', $arr);, it ...
1
vote
1answer
209 views

Retrieving two columns from one table inserting into another table using mySQL and PHP

I have two tables in mySQL, notably accounts and subscriber_data. I want to use two columns present in the accounts table (id, name), and insert it to the subscriber_data table in two columns ...
1
vote
1answer
478 views

Checkbox array to string help: Implode $_POST and return values to same $_POST?

I'm trying to store the results of a short form to a flat-file (e.g. a .text file). The file will be imported into Excel as a delimited file. The form has checkboxes so it can be set into an array: ...
1
vote
3answers
166 views

Implode all the properties of a given name in an array of object - PHP

Is there a way to implode the values of similar objects contained in an array? I have an array of objects: $this->inObjs and I'd like a comma separated string of each of their messageID ...
1
vote
3answers
390 views

How to get only the IP address / subnet

I'm using a jquery plugin, it maskered my field and allow the user only to type the correct values. It is working very well, but now when I submit my form, the object IP is an Array, I need to ...
1
vote
1answer
90 views

php htmlentities on <code></code> only!

I want to run htmlentities() only on the contents within <code> things to strip </code> I Wrote a function that takes a string and finds the content in between <code> </code> ...
1
vote
4answers
186 views

PHP: strip the tags off the value inside array_values()

I want to strip the tags off the value inside array_values() before imploding with tabs. I tried with this line below but I have an error, $output = implode("\t",strip_tags(array_keys($item))); ...
1
vote
1answer
149 views

PHP: to make data into table formate before exporting to excel

I use this function below to process the array data I retrieve from my db, then export this data for excel. # feed the final items to our formatting function... $contents = get_excel_data($items); ...
1
vote
1answer
126 views

How to expand on implode() for separate strings dependent on value

In various places on my page I've used mysql_fetch_array() within a while loop to copy values into a new PHP array. From there I've used implode() to write the values into a string for display to the ...
1
vote
3answers
81 views

implode a subsection of an array?

I have a post array and I want to implode only a subsection of it. For instance, I have: 'value1' => 'a' 'value2' => 'b' 'value3' => 'c' 'name1' => 'Fred' 'name2' => 'Mary' 'name3' ...
1
vote
3answers
660 views

PHP, MYSQL, EXPLODE and ARRAYS

$query_posts = " SELECT DISTINCT meta_value FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = 'Product' AND wposts.post_status = ...
1
vote
3answers
140 views

Removing any (first, middle, last, single) item in a CSV list via PHP's explode / implode

$pieces = explode(",", $userList); $key=array_search($deleteuser, $pieces); if(FALSE !== $key) { unset($pieces[$key]); } else return FALSE; $userList = implode(",", $pieces); I'm looking ...
1
vote
5answers
2k views

PHP Implode Associative Array

So I'm trying to create a function that generates a SQL query string based on a multi dimensional array. Example: function createQueryString($arrayToSelect, $table, $conditionalArray) { $queryStr = ...
1
vote
3answers
389 views

How can I “dual” implode a nested array?

I have a nested array (only one level deep) like this: $a = array( array( 1, 2, 3 ), array( 2, 4, 6 ), array( 5, 10, 15 ) ); And I'd like a nice way to implode() it to this form: ...
1
vote
3answers
272 views

Implode error for PHP

I have a form where I've got three checkboxes like this: <td>Wireless <input type="checkbox" name="services[]" value="wireless" /></td> </tr> <tr> ...
1
vote
4answers
2k views

How do you join (implode) a MySQL Array?

The implode() function works on normal arrays, but it doesn't work on arrays created with mysql_fetch_array (I also tried mysql_fetch_row) How do you get them to work? Defined Above: $friends = ...
1
vote
2answers
341 views

php imploding array help

I am trying to the implode the userIDs in the $users_in_range array the problem is it is iploding miles instead of userid <?PHP $users_in_range = users_in_range($lat, $long, 500, true); // ...
0
votes
5answers
34 views

How to Remove PHP Array Implode Character from Beginning of String

I am working on a project that requires imploding an array with character separation. I have successfully used join and implode interchangeably in other parts of the project, but I can't get it to ...
0
votes
2answers
27 views

mysql query and implode

I try to retrieve a array from one table What is wrong with this code? $_fbexclude = mysql_query("SELECT fbempfang FROM fbinvite WHERE fbreturn = '1' "); $fbexcludearray= ...
0
votes
2answers
32 views

Very simple query with implode gives implode: invalid arguments passed

It's friday, so I am obviously not seeing things strait so I thought to ask here. I want to get a list of names from the database using: $test = mysql_query("SELECT Names FROM Content ORDER BY ...

1 2