Output of PHP programs | Set 1 (Regular Expressions)

Predict the output of following PHP programs:

Question 1




<?php
    echo str_pad("Welcome", 5)." to zambiatek.";
?>


Options:

  1. WelcomeWelcomeWelcomeWelcomeWelcome to zambiatek.
  2. to zambiatek. WelcomeWelcomeWelcomeWelcomeWelcome
  3. to zambiatek. Welcome
  4. Welcome to zambiatek.

Output:

Welcome to zambiatek.

Explanation: The str_pad() function pads a string with a specified number of characters.

Question 2




<?php
    $author = "zambiatek";
    $author = str_replace("e","i",$author);
    echo "I am intern at $author.";
?>


Options:

  1. I am intern at zambiatek.
  2. I am intirn at GiiksforGiiks.
  3. I am intern at GiiksforGiiks.
  4. Error

Output:

I am intern at GiiksforGiiks.

Explanation: The str_replace() function case sensitively replaces all instances of a string with another.

Question 3




<?php
    $GfG = "zambiatek";
    echo ltrim(strstr($GfG, "f"),"f");
?>


Options:

  1. zambiatek
  2. Geeks
  3. Geeksf
  4. orGeeks

Output:

orGeeks

Explanation: The strstr() function returns the remainder of a string beginning with the first occurrence of a predefined string.

Question 4




<?php
    $username = "sagarshUkla785";
    if (ereg("([^a-z])",$username))
        echo "Not a valid username!";
    else
        echo "Valid username!";
?>


Options:

  1. Error
  2. Not a valid username!
  3. Valid username!
  4. No Output is returned

Output:

Not a valid username!

Explanation: Because the provided username is not all lowercase, ereg() will not return FALSE (instead returning the length of the matched string, which PHP will treat as TRUE), causing the message to output.

Question 5




<?php
    $GfG = "Hello\tWelcome to\nzambiatek.";
    print_r(split("[\n\t]",$GfG));
?>


Options:

  1. Hello Welcome to zambiatek.
  2. Array ( [0] => Welcome to [1] => zambiatek. )
  3. Array ( [0] => Hello [1] => Welcome to [2] => zambiatek. )
  4. [0] => Hello [1] => Welcome to [2] => zambiatek.

Output:

[0] => Hello [1] => Welcome to [2] => zambiatek.

Explanation: The split() function divides a string into various elements, with the boundaries of each element based on the occurrence of a defined pattern within the string.

Question 6




<?php
    $languages = array("C++", "JAVA", "PYTHON", "SCALA");
    $language = preg_grep("/^S/", $languages);
    print_r($language);
?>


Options:

  1. Array ( [0] => C++ [1] => JAVA [2] => PYTHON [3] => SCALA )
  2. Array ( [3] => SCALA )
  3. Array ( [1] => JAVA )
  4. Array ( [0] => C++ )

Output:

Array ( [3] => SCALA )

Explanation: This function is used to search an array for languages beginning with S.

Question 7




<?php
    $title = "i'm intern at zambiatekforGeeks.";
    echo ucwords($title);
?>


Options:

  1. I’m Intern At zambiatek
  2. I’m intern at zambiatekforGeeks
  3. i’m Intern At zambiatek
  4. i’m intern at zambiatekforGeeks

Output:

I'm Intern At zambiatek.

Explanation: The ucwords() function capitalizes the first letter of each word in a string. Its prototype follows: string ucwords(string str).

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button