php core interview questions +2years code example
Example 1: php interview questions for 2 year experience
<?php
if(empty($_POST['email'])){
echo "The email cannot be empty";
}
$email = $_Post [‘email’]?? "The email cannot be empty";
?>
Example 2: php interview questions
$text = "I like programming";
print_r (explode(" ",$text));
$strarr = array('Pen','Pencil','Eraser');
echo implode(" ",$strarr);