<?php $string = "hello world"; // 将字符串中的所有小写字母改为大写字母 $string = strtoupper($string); echo $string; ?>