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>