what output do you get here?
Top Questions
<?php
$here = "/home/httpd/html/test ";
list ($j1,$j2,$j3,$j4) = split('/',$here);
print "$j3";
?>a. home
b. Array
c. test
d. httpd
ANS: httpd
<?php
$here = "/home/httpd/html/test ";
list ($j1,$j2,$j3,$j4) = split('/',$here);
print "$j3";
?>a. home
b. Array
c. test
d. httpd
ANS: httpd
Post new comment