Maison > Article > développement back-end > Code PHP d'entrée de gamme
Exemple 1 : Le premier programme PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>第一个PHP程序</title> </head> <body> <?php echo "第一个PHP程序"; ?> </body> </html>
Résultat d'exécution :
Exemple 2 : Date de sortie
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>中文输入</title> </head> <body> <pstyle="margin-top:10px;margin-left:180px"> <?php echo "<font color='#11ffff00'>北京时间:".date("Y-m-d H:i:s ")."</font>" ?> </body> </html>
Résultats d'exécution :
Remarques :
Modifiez la configuration de php.ini comme suit.
[Date]
; Définit le fuseau horaire par défaut utilisé par les fonctions de date
; http://php.net/date.timezone
date .timezone ="Asia/Hong_Kong"
Redémarrez ensuite le service Apache, sinon l'heure affichée sera l'heure de Greenwich.
Exemple 3 : Sortie en chinois
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>输出中文</title> </head> <body> <?php echo "PHP欢迎你"; ?> </body> </html>
Résultat d'exécution :
Exemple 4 : Image de sortie
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>输出图片</title> </head> <body> <?php echo '<img src="images/PHP参考手册.png" style="max-width:90%" style="max-width:90%" / alt="Code PHP d'entrée de gamme" >' ?> </body> </html>
Résultat de l'exécution :
Exemple 5 : Chaîne de sortie
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>输出字符串</title> </head> <body> <?php echo "输出字符串"; ?> </body> </html>
Résultat de l'exécution :
Exemple 6 : Saisir plusieurs chaînes
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html; charset=utf-8"/> <title>发布最新公告信息</title> </head> <body> <pstyle="margin-top:10px;margin-left:180px"> <?php echo "<font color='#11FF00'>从即日起,登录本站的用户可免费下载手机铃声!"."[".date("Y-m-d H:i:s")."]</font>"; ?> </body> </html>
Résultat d'exécution :