How many data types are used by php?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best way to change the key without changing the value of a php array element?
How a variable is declared in php?
What is the phpstorm?
How is it possible to set an infinite execution time for php script?
What is exception handling in php?
What is the meaning of die in php?
what is the default method of form in php?
How to return ascii value of character in php?
Who is the father or inventor of php?
Explain different types of errors in PHP (i.e. arguments in errorreporting function)?
8 Answers Base2 Infotech, DCI, Microsoft, Tata Elxsi,
Explain why would we use === instead of ==?
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', )