adplus-dvertising
frame-decoration

Question

What will be the output of the following PHP code?
<?php 
    $str = addslashes('What does "yolo" mean?');
    echo($str); 
?>

a.

What does /”yolo/” mean?

b.

What does \\”yolo\\” mean?

c.

What does \”yolo\” mean?

d.

\What does \”yolo\” mean?\

Posted under Functions in PHP PHP

Answer: (c).What does \”yolo\” mean?

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following PHP code?

Similar Questions

Discover Related MCQs