explode() is a PHP function that splits a string based on a delimiter, returning an array.

learn more… | top users | synonyms

2
votes
3answers
36 views

with php explode first variable is untrimmable

i have two files, b.txt: &first = cjnk1 &second = dcnksj2 &third = cd3 &fourth = cdln4 and a.php: <?php $data=file_get_contents("b.txt"); $rows=explode("\n", $data); ...
2
votes
2answers
37 views

What is the best way to loop through string and insert into mysql column?

I have a variable which displays the following string: $item_value = itemOne,itemTwo,itemThree I would like to take this string and have insert each item as a separate row entry for a single column. ...
-3
votes
1answer
38 views

PHP string explode with regular expression? [closed]

PHP String explode with regular expression Example data: "A" 100000 "M" "C" "J" "JOHNSON TRENCHING" 238910 Expected result: array ( 0 => 'A', 1 => '100000', 2 => 'M', 3 ...
0
votes
1answer
48 views

PHP loop through explode()

I am currently using two fields from a database, The fields have words which are seperated by comma's (,). Here is my code $tags = explode(",",$tags); $tagsdesc = explode(",",$tagsdesc); ...
1
vote
4answers
37 views

Double explode an array

The string: user:hello,user2:world Desired Output: $string = array( 1 => array( 1 => "user", 2 => "hello"), 2 => array( 1 => "user2", 2 => "world") ); What I've tried ...
-1
votes
0answers
17 views

Php group exploded array

Hi i'm using below codes to explode a string <?php foreach ($addons as $options) { ?> <option value="<?php echo $options->addon_name.','.$options->addon_price ...
0
votes
1answer
23 views

compare multi value with foreach

regex a=1 b=2 c=4 d=17 g=9 ... is function for check if charecter and number same .... funnction compare($val1,$val2) { $val1=explode("|",$val1) $val2=explode("|",$val2) ...
0
votes
1answer
40 views

PHP explode fuction

i have an excel template which is used to fill in data. I export this to CSV. One of the fields contains a new line charcter. When done on a mac it returns a \r instead or \n When i trying to explode ...
-2
votes
1answer
25 views

PhP Create array from huge string

I am retrieving a huge string from the WoW Armory API using: $allAchievements = file_get_contents('http://us.battle.net/api/wow/data/character/achievements'); That returns this: ...
1
vote
1answer
25 views

How do I keep my paragraphs seperate?

I am writing a word limit function for my custom blog. I want to limit the words on the index page and remove any formatting. At the moment my code is: function limit_words($string, $word_limit){ ...
0
votes
3answers
57 views

php count the number of strings after exploded

Here is my code <?php $string = 'a|b|c|d|e|f'; $tags = explode('|' , $string); foreach($tags as $i =>$key) { $i >0; echo $i.' '.$key .'</br>'; } ?> the output is 0 a 1 ...
0
votes
1answer
38 views

Extracting data from a txt file in php

I have a log file which is a .txt file which displays IP ADDRESS, TIMESTAMP, FILENAME, HTTP STATUS CODE, BANDWIDTH, USER AGENT 103.239.234.105 -- [2007-04-01 00:42:21] "GET ...
0
votes
1answer
33 views

replace comma between double quotes using preg_replace [duplicate]

I have a csv file like this Number,Name,UG College,UG University,PG College,PG University 1100225,Lakshmin,pkrrrr College,"PKRRRRR University, Choice",nandhaaaaa,"Nandhaa University, Kumali" While ...
0
votes
1answer
62 views

exploding a string using a regular expression

I have a string as below (the letters in the example could be numbers or texts and could be either uppercase or lowercase or both. If a value is a sentence, it should be between single quotations): ...
1
vote
2answers
52 views

explode() function using GROUP SEPERATOR

As per find through MySQL GROUP_CONCAT escaping this I have use GROUP_CONCAT SELECT `topic_response`.`response`, GROUP_CONCAT(`comment` SEPARATOR 0x1D ) AS `comment`, ...
0
votes
1answer
36 views

Codeigniter PHP: How do I use explode in codeigniter to find between 2 integers [closed]

I have a select box with the choice of "very low", "low", "medium", "high" and "very high" to choose between 0-19,20-39 etc up to 100. Model: if ($this->input->post('interest_rating') != "") ...
1
vote
2answers
32 views

Regex for identifying all kinds of spaces to be used as a delimiter for exploding a string into an array?

I'm not proficient with regular expressions so when I needed to identify if a paragraph (post excerpt in Wordpress) started with the word "by" and if it did to apply a CSS class to the word "by" and ...
0
votes
2answers
28 views

str_replace and explode function

i am writing a code to manipulate a text file that will be open in a browser so far i have is this code: <?PHP $file_handle = fopen("file.txt", "r") or die("Couldn`t open $file_handle"); while ...
0
votes
2answers
30 views

PHP Explode and Arrays

I have a string like: clid=7 cid=55164 client_database_id=90507 client_nickname=Leandro client_type=0|clid=9 cid=55164 client_database_id=90507 client_nickname=Leandro1 client_type=0|clid=10 ...
1
vote
2answers
32 views

Using PHP to convert XML data

I need to take XML DATA and upload all of it into my MySQL database. (right-click, save as...) Here's my theory... Take this line for example: monster short="Fredzin the crazed Dwarf" ...
0
votes
3answers
49 views

php split array to string with commas

i have an array with numbers print_r($arr_usr_id[$key]); output: "930933934" now i need to convert this to 930,933,934 as a string with commas... $newnumbers = ...
0
votes
0answers
19 views

Generating URL with explode, preg_replace and urlencode in PHP

I'm trying to build URL with PHP, URL contains non-latin characters (slovenian č, š, and ž). I'm having some problems because I also need to replace space with + and also encode non-latin characters. ...
0
votes
1answer
38 views

php foreach preg_match explode

I am creating a function that reads in a tab delimited text file and then stores the values in a two dimensional array. The text file has a line of data then a line of just tabs (because it is ...
-1
votes
2answers
40 views

concate exculding NULL variable [closed]

I have several variables, which i receives from upon entry in one of my form via multiple select options. Total 4 select options are available which user can select maximum all or else he can select ...
0
votes
3answers
34 views

PHP Explode comma separated values with date

I'm using explode to parse a string of comma separated values into variables. No problem there. The issue I'm having is that one of the values is a date in the format: May 3, 2013. So the explode ...
0
votes
0answers
14 views

Grab certain text from a line, and remove anything before & after that text, output as x:y

I need a simple script in php. I need it to grab the two pieces of text 'x' and 'y' (not literally x and y, used as an example) from a line that contains many other variables in it. Here is an ...
0
votes
2answers
50 views

PHP explode/split with 2 different delimiters

In the following string $str I need to explode/split the data get the part 'abc' and the first occurrence of '::' and then implode it all back together to a single string. Can the explode be done in ...
-1
votes
0answers
33 views

Search for person in mssql database [duplicate]

I have a MS SQL database called "Persons" with two columms: Firstname And Lastname. If the person have a middelname the middelname is in the Firstname columm after the firstname. How can I search for ...
1
vote
4answers
47 views

Undefined offset issue in explode

Firstly I apologise for asking a question which must be somewhat rookie or simple, but I cannot seem to find any code that I've researched to solve my problem. Notice: Undefined offset: 1 in ...
0
votes
2answers
52 views

Explode to array and print each element as list item

I have a set of numbers in a table field in database, the numbers are separated by comma ','. I am trying to do the following: Step 1. : SELECT set of numbers from database and explode it to array : ...
0
votes
2answers
61 views

explode an array php not working

I don't understant why my explode doesn't work : I have an array : array(6) { [0]=> string(0) "" [1]=> string(21) " Subject Hello World " [2]=> string(57) " Bonjour se jserais base sdf ...
0
votes
1answer
35 views

php is any easy way to explode sentence with 1-3 words?

php is any easy way to explode sentence with 1-3 words? $str = 'Wikipedia was launched on January 15, 2001.'; $str = preg_replace('/[[:punct:]]/i',' ',$str); $parts = explode(' ',trim($str)); now ...
0
votes
1answer
18 views

str_getcsv not parsing the data correctly

I have a problem with str_getcsv function for PHP. I have this code: <?php $string = '#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=714000,RESOLUTION=640x480,CODECS="avc1.77.30, mp4a.40.34"'; $array ...
0
votes
2answers
25 views

generating array of parents paths of a URL

so if I have a string like this, e.g. "/path1/folder/fun/yay/" How can I run that through a function to return an array of all the parent paths, looking like this: array ( '/', '/path1/', ...
-1
votes
3answers
46 views

Get result from MySQL with explode

i have a row in my user's database for PC information. i separated pc informations with this: || Example of the column: pc|intel||vga|nvidia Now, how i can show all Users with nvidia vga? i ...
1
vote
0answers
70 views

PHP Person Search with explode

I want to make a Search function in PHP and MSSQL with the SQLSRV Driver. I only have one search input field on the page. I want to search for persons in my table called "Persons" and the following ...
0
votes
2answers
36 views

php mysql+ Notice: Array to string conversion in C

I keep getting this error when I try to explode the array by a comma, How to fix this error can anyone help me ??? friend_request.php <?php if(isset($_POST['acceptrequest'.$user_from])) ...
0
votes
0answers
33 views

separate string with delemeter using php and mysql to store values

Creating a friend request page to allow the user to send request to others. For this I need to store friend array in the database and separate each username by a comma. So if anyone can help me? ...
1
vote
1answer
85 views

php + mysql + how to add a comma to split the string in the database

i am creating a friend request page that it need to take the friends request as an array than separate each username by a comma. i do not know what to use the implode or the explode i did use ...
0
votes
1answer
41 views

php explode text from mysql database into table

I have a text field in my database where a new item, or subject is separated using "-" I have successfully exploded the text and made it appear in a table where each item, or subject is displayed in ...
-1
votes
2answers
31 views

String representation

Can anyone tell me why is this $pole = explode("\n", file_get_contents('obce.txt')); echo $pole[1]; //in obce.txt it is Test different from $pole[1]="Test"; echo $pole[1]; For me, it seem to ...
0
votes
0answers
61 views

Foreach Loop Only Iterating Once - PHP

I was looking for a PHP script to grab images from a few websites, but I couldn't find one that was universal and allowed scraping of multiple pages.. so I built one. It asks for a save-to path and ...
0
votes
2answers
57 views

Excel, VBA, I need to sent rng to lastcolumn. Currently MsgBox will display it

basically i am using the TextToColumns function to separate out data separated by a semi colon in the same cell. problem is there are 2 columns of data that needs this function done and i have to ...
0
votes
1answer
41 views

Get character from text file php

I am trying to read character of a text file. $lang['content.home'] = 'Home'; $lang['content.about_us'] = 'About Us'; $lang['content.team'] = 'team'; how to get just character content.home and ...
0
votes
2answers
45 views

Explode DB record into tabular format

I have a database connected to my site that is recording actions taken by a user on an application we have built. The application holds a number of images, which the user can view and download, and ...
1
vote
2answers
83 views

split a comma separated string in a pair of 2 using php

I have a string having 128 values in the form of : 1,4,5,6,0,0,1,0,0,5,6,...1,2,3. I want to pair in the form of : (1,4),(5,6),(7,8) so that I can make a for loop for 64 data using PHP.
0
votes
3answers
50 views

PHP Explode Remove “Extra” Text

Assuming I have the following URL on a webpage, how I can I utilize the explode() function to give me only the ID, and not the rest of the URL that follows the ID? file.php?id=12345&foo=bar I ...
0
votes
1answer
49 views

Php Complex Exploding

Here is a string.. $string = "foo1 : bar1, foo2: bar2, foo3: bar3"; Exploding using , delimeter $exploded = (",", $string); Now the $exploded array contains: foo1 : bar1 foo2 : bar2 foo3 : ...
1
vote
3answers
54 views

Explode Email List [closed]

So let's say, I want explode email list and password. If I input email list on textarea look likes : email1@domain.com:password email2@gmail.com:password email3@yahoo.com:password etc And when ...
0
votes
2answers
71 views

PHP: explode(' ',$string); re-inserts removed blank space

$_GET['search'] imports the following string: "first second \ \ third" (the spaces between "second" and "third" are just blank spaces, the slashes are added since SO's text area does not allow ...

1 2 3 4 5 13