Top "Explode" questions

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

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 …

php arrays count explode
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 …

php explode
How do I explode an integer

the answer to this could be easy. But I'm very fresh to programming. So be gentle... I'm at work trying …

php arrays integer delimiter explode
how to count the words in a specific string in PHP?

I want to count the words in a specific string , so I can validate it and prevent users to write …

php string validation explode
Split a MYSQL string from GROUP_CONCAT into an ( array, like, expression, list) that IN () can understand

This question follows on from MYSQL join results set wiped results during IN () in where clause? So, short version of …

mysql list expression explode
php explode all characters

I'm looking for the equivalent of what in js would be 'this is a string'.split('') for PHP. If …

php arrays explode
Hive Explode / Lateral View multiple arrays

I have a hive table with the following schema: COOKIE | PRODUCT_ID | CAT_ID | QTY 1234123 [1,2,3] [r,t,null] [2,1,null] How …

hive explode hiveql
PHP: Undefined offset

On some pages, i receive the error: PHP Notice: Undefined offset: 1 in /var/www/example.com/includes/head.php on …

php undefined offset explode notice
Calling PHP explode and access first element?

Possible Duplicate: PHP syntax for dereferencing function result I have a string, which looks like 1234#5678. Now I am calling this: $…

php string explode
explode textarea php (at new lines)

can I do: explode("\n", $_POST['thetextarea']); and have it work on all platforms? (The question I am asking is …

php explode