Tagged Questions

1
vote
5answers
56 views

php explode function

i want to let the user type in tags: windows linux "mac os x" and then split them up by white space but also recognizing "mac os x" as a whole word. is this possible to combine the explode function …
0
votes
1answer
23 views

Weird behavior of jQuery UI Explode in Internet Explorer

I'm trying to show an background-image after a user clicks on a box. (I know I'm a bit lazy on the CSS) <script type="text/javascript"> $(document).ready(function() { var options = {}; …
2
votes
4answers
56 views

Multiple Select with Explode: only returns the word “Array”

Using Wordpress I have created a multiple select box so that users can select categories to exclude. When the page initially loads I see my default values pre-selected. However when I select new …
0
votes
3answers
43 views

PHP Email Array Regular Expression

Given a list of emails, formated: "FirstName Last" <email@address.com>, "NewFirst NewLast" <email2@address.com> How can I build this into a string array of Only email addresses (I …
2
votes
5answers
97 views

Explode string by one or more spaces or tabs

How can I explode a string by one or more spaces or tabs? Example: A B C D I want to make this an array.
0
votes
4answers
62 views

undefined offset when using php explode()

I've written what I thought was a very simple use of the php explode() function to split a name into forename and surname: // split name into first and last $split = explode(' ', $fullname, 2); …
0
votes
2answers
58 views

Php explode then get the name row from a MySql Table

I know this has been talked about here before. However, my situation is a bit different and I'm so close. I would like to explode an array of category id's from a news data table then get the …
0
votes
3answers
82 views

Explode and get a value in one line of code

Can you write the following in one line of code? $foo = explode(":", $foo); $foo = $foo[0];
0
votes
2answers
49 views

explode glitch in delimiter

I'm having some trouble with delimiter for explode. I have a rather chunky string as a delimiter, and it seems it breaks down when I add another letter (start of a word), but it doesn't get fixed when …
0
votes
1answer
97 views

MySQL - explode/split input to stored procedure

I have problem, I need to explode my input to my stored procedure, but don't know how I can do it. My stored procedure has a VARCHAR(256) input which I need to split and generate insert statements. …
0
votes
1answer
42 views

Explode- sort of?

Using PHP, reading in a string like the following: 36,2,"$21,830.00","$18,012.50","$20,764.00","$14,935.00","$13,655.00","$15,820.00","$6,895.00","$4,357.50","$4,944.00" I want to explode using the …
0
votes
7answers
49 views

Array a string in the following format?

How can i array a string, in the format that $_POST does... kind of, well i have this kind of format coming in: 101=1&2020=2&303=3 (Incase your wondering, its the result of jQuery Sortable …
1
vote
4answers
212 views

Exploding Arrays in PHP While Keeping the Original Key

How can I do the following without lots of complicated code? Explode each value of an array in PHP (I sort of know how to do this step) Discard the first part Keep the original key for the second …
0
votes
1answer
50 views

Explore a COM Object in PHP

What would be the proper way to explode a COM object for debugging? I have a 3rd party function that returns a multilevel object. The documentation is non existant, so I'd like to be able to echo …
1
vote
1answer
205 views

PHP: Explode using special characters

I'm working on a long string grabbed from a Session that uses "§" (Section sign) to group and divide different parts of the string. Example: "ArticleID | Title | Date § ArticleID | Title | Date § …

1 2 next
15 30 50 per page