Question:What are default session time and path?
- Default session time in PHP is 1440 seconds or 24 minutes. - Default session save path id temporary folder /tmp
Question:What are default session time and path?
- Default session time in PHP is 1440 seconds or 24 minutes. - Default session save path id temporary folder /tmp
Question:How many ways you can write into a file?
We can write into a file using the following mode:
r+,
W,
w+,
A,
a+,
X,
x+
Question:
What is the functionality of the function strstr and stristr?
strstr: It returns the remainder of a string beginning with the first occurrence of a predefined string.
stristr: same as strstr except the search of for the pattern is case insensitive.
Question:
What is the difference between ereg_replace() and eregi_replace()?
ereg_replace(): it is used to find and replace a pattern with a replacement string.
eregi_replace(): same as ereg_replace() except the search of for the pattern is case insensitive.
Question:What are the different functions in sorting an array?Discuss them?
sort(): sort array in ascending order.
rsort():sort array in descending order.
asort() : Sort array in ascending order with key/value.
arsort(): reverse of assort.
ksort(): sorts an array by its keys.
krsort():reverse of ksort