Explain Type hinting in PHP?
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', )
equivalent code for the following c program in php void main() { int i=5;printf("%d",i); }
what do you mean by php.ini file ?????????
Write a php script to get the largest key in an array?
In PHP how many size data can upload by default?
9 Answers Classic Infotech, PG Software,
How to check a variable is an array or not in php?
How easy is php?
What is member variable?
What is the purpose of constant() function?
Is uploaded file php?
i got this error msg in online... how to solve this problem... i couldnot find out as soon as possible send me answer or idea COULD NOT ABLE TO CONNECT DATABASE . Can't connect to local MySQL server through socket '/usr/local/mysql-5.0/data/mysql.sock' (2)
What is the difference between == and === operator in PHP?