Result Size: 1264 x 19
x
 
<!DOCTYPE html>
<html>
<body>
<?php
function exclaim($str) {
  return $str . "! ";
}
function ask($str) {
  return $str . "? ";
}
function printFormatted($str, $format) {
  // Вызов функции обратного вызова $format
  echo $format($str);
}
// Передайте exclaim и ask как функции обратного вызова printFormatted()
printFormatted("Hello world", "exclaim");
printFormatted("Hello world", "ask");
?>
</body>
</html>
                
Hello world! Hello world?