MTable.php 170 B

12345678910111213
  1. <?php
  2. date_default_timezone_set('Asia/Shanghai');
  3. function aa(){
  4. for($i =1;$i<=9;$i++){
  5. for($j=1;$j<i;$j++){
  6. echo i."*".j."=".i*j."";
  7. }
  8. echo "\r\n";
  9. }
  10. }
  11. aa()