Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 410 Bytes

0406.md

File metadata and controls

21 lines (17 loc) · 410 Bytes

What is the output of the following PHP script?

$str = 'stingers';
echo strtr($str'st''bl');

Enter the exact script output

  • A) blingerb
  • B) stingerbl
  • C) stingers
  • D) bltingers
Answer

Answer: A