How do i explode this string '||25||34||73||94||116||128' i
need to have a array like this

array (
0 => '25',
1 => '34',
2 => '73',
3 => '94',
4 => '116',
5 => '128'
)

explode("||", $array); didnt work for me i get this array

array (
0 => '',
1 => '25',
2 => '34',
3 => '73',
4 => '94',
5 => '116',
6 => '128',
)

Answers were Sorted based on User's Feedback



How do i explode this string '||25||34||73||94||116||128' i need to have a array like thi..

Answer / rekha_sri

Use the following program.It will remove the beginning ||.

?php
$string='||25||34||73||94||116||128';
$array = explode('||', trim($string, '|'));
print_r($array);
?>
~

Is This Answer Correct ?    23 Yes 0 No

How do i explode this string '||25||34||73||94||116||128' i need to have a array like thi..

Answer / nilsoft

<?php
$string = '||25||34||73||94||116||128';
$require_array =
explode("||",substr($string,2,strlen($string)-2));
print_r($require_array);
?>

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More PHP Interview Questions

What is the difference between substr() and strstr()?

0 Answers  


What type of inheritance that PHP supports?

15 Answers   Webwing Technologies,


How many types of array supported in php?

0 Answers  


What is a php tag?

0 Answers  


Where is the functions php in wordpress?

0 Answers  






What exactly is validating and sanitizing?

0 Answers  


Explain about the connective abilities of the PHP?

0 Answers  


How do I run a php file?

0 Answers  


What is session management php?

0 Answers  


What is php how it works?

0 Answers  


What is a controller in programming?

0 Answers  


Tell me can you extend a final defined class?

0 Answers  


Categories