Blogger Information
Blog 28
fans 0
comment 0
visits 15759
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
08-02作业
︷肉園耔︷
Original
401 people have browsed it

— php与javasript的遍历区别

  1. <?php
  2. $cars=['1宝马3GT xDrive 330li 耀石灰','2宝马x2 xDrive20i x','3宝马x5 xDrive30i x','4宝马750i 小drive V8m'];
  3. ?>
  4. <!doctype html>
  5. <html lang="en">
  6. <head>
  7. <meta charset="UTF-8">
  8. <meta name="viewport"
  9. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  10. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  11. <title>Document</title>
  12. </head>
  13. <body>
  14. <h2><?php echo '宝马轿跑BWM车' ?></h2>
  15. <ol>
  16. <!--使用PHP模板语法 : 代表{ -->
  17. <? foreach($cars as $car):?>
  18. <li style='color:green'>
  19. <a href=''><? echo $car ;?></a>
  20. </li>
  21. <?endforeach?>
  22. </ol>
  23. <script type="text/javascript">
  24. let cars=['1.宝马3GT xDrive 330li 耀石灰','2.宝马x4 xDrive6i x','3.宝马x5 xDrive30i x','4.宝马750i 小drive V8 m'];
  25. for (let i=0;i< cars.length;i++){
  26. alert(cars[i]);
  27. }
  28. </script>
  29. </body>
  30. </html>
  31. <?php
  32. $user='pater';
  33. $password=md5('123456');
  34. echo $password;
  35. $password1=md5('123456');
  36. echo $password1;
  37. echo $user;
  38. var_dump($user);
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:本质并无区别的
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post