What is a php 5?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between require_once(), require(), include()?
explain php variable length argument function.
Is php a low level language?
what method is used to generate a random number?
How does php and apache work?
What is the correct php command to use to catch any error messages within the code?
What is the apache?
If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of $$b? Can anyone explain how's the value of $$b=100
15 Answers ABC, Asan, Indivar, Swistro Marketing Solutions,
What is the use of extract function in php?
What is the difference between "echo" and "print" in php?
How to open a file for reading?
Write a function that takes "depth" as argument and return sum of node's data of that depth. For instance, (0) depth 0 / \ (10) (20) depth 1 / \ (40) (50) depth2 If I pass get_sum_by_depth(2) , it would return 90 (i.e. 40 + 50 )