Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
infor0215
/
DaanX_PHP
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
DaanX_PHP
/
get_web_last.php
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
34 lines (32 loc) · 1.56 KB
master
Breadcrumbs
DaanX_PHP
/
get_web_last.php
Copy path
Top
File metadata and controls
Code
Blame
34 lines (32 loc) · 1.56 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*=========================
本程式已完成
include的程式
==========================*/
$sum=0;//設定記數初始值
$read_data=0;//設定記數初始值
$read_SQL=mysql_query("SELECT * FROM stu_sgin");//尋找資料表
$row_id_01 = mysql_fetch_row($read_SQL);//搜索列
$number=$row_id_01[0]+1;//取得第一個列的值(id)即上次搜索到的最終資料+1
$array_unmber="";//設定紀錄用的陣列變數
for ($i=$number; $i <$number+20 ; $i++) { //將$i設為上次搜索到的最終資料 並以每二十個資料為一循環
$hear=get_headers("http://ta.taivs.tp.edu.tw/news/news.asp?KEY=$i");//取得網站標頭($i為上次搜尋到的數字累加)
$text=implode("", array_intersect(str_split($hear[5]), array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)));//選取網站標頭的大小($hear[5]) 並取得其大小(KB)
$read_text=$number+20-$i-1;//當迴圈執行完 但數字未跑完時 迴圈增值的判定
if($text>400&&$read_text>0){//當其大小 大於400KB 且迴圈未跑完時的判定
$array_unmber[]=$i;//將(存在的)資料 存入$array_unmber的陣列中
}
elseif($text>400&&$read_text==0){//當其大小 大於400KB 且迴圈已跑完時的判定
$array_unmber[]=$i;//將(存在的)資料 存入$array_unmber的陣列中
$number=$number+20;//迴圈增值
}
}
if($array_unmber !=""){//當$array_unmber存在時
$last_number=max($array_unmber);//將陣列中最大值取出
mysql_query(" UPDATE stu_sgin SET id='$last_number'") ;//寫回SQL
$read_data=1;
}
else{
$read_data=0;
}
?>
You can’t perform that action at this time.