摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript"> // 求1--100之间,除了35、45、60之外所有5的倍数的和 window.onload = 阅读全文
摘要:
1、变量加上索引名 <?php $student[0]=10 ; $student[1]='哈哈哈'; $student[2]=true; $student[3]=60.5; echo $student[1]; ?> 输出显示:哈哈哈 2、$student[]=10; $student[]='哈 阅读全文