源代码:
<HTML> <HEAD></HEAD> <FONT FACE="'Courier New',Verdana, Arial, Helvetica" SIZE=2> <!DOCTYPE html> <html> <body> <FONT COLOR=#ff0000><?php $str = " Hello World! "; echo "Without trim: " . $str; echo " "; echo "With trim: " . trim($str); ?></FONT> </body> </html> </HTML>
运行结果:
<HTML> <HEAD></HEAD> <FONT FACE="'Courier New',Verdana, Arial, Helvetica" SIZE=2> <!DOCTYPE html> <html> <body> <FONT COLOR=#ff0000>Without trim: Hello World! With trim: Hello World!</FONT> </body> </html> </HTML>