Tagged Questions
2
votes
3answers
105 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 ...
1
vote
2answers
117 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
1answer
400 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
1answer
188 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
3answers
678 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
146 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 ...
0
votes
3answers
59 views
Ok to use numbers as glue and delimiters?
The PHP docs for join() and explode() say that the $glue and $delimiter must be strings. I tried this and it doesn't throw any errors:
$glue = -8.5;
$delimiter = 0;
echo join( $glue, ...
0
votes
4answers
103 views
Get content from string in different situations
I'm thinking of storing data from a form as a string, each answer separated by a pipe. The problem I have is that some answers may come in the form of multiple items. We store the radio button ...
-2
votes
5answers
894 views
php implode explode can do it?
eg: existing data retrieve from db field: a,b,c,d,e
so now $data= "a,b,c,d,e";
eg: new data to be added--- cc, gg
final value saved into db will be $finaldatatobeupdatedintodb= "a,b,c,d,e,cc,gg";
...