📄 dynscroll.php
字号:
<?php
if ( stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml") ) {
header("Content-type: application/xhtml+xml"); } else {
header("Content-type: text/xml");
}
echo("<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n");
if(!isset($_GET["rowsLoaded"])){
$_GET["rowsLoaded"] = 0;
}
?>
<rows>
<?php
if($_GET["rowsLoaded"]<500){
$start = $_GET["rowsLoaded"]+1;
$to = $start+100;
for($i = $start;$i<$to;$i++){
print("<row id='r$i'><cell>index is $i</cell><cell>load turn started from $start</cell></row>");
}
}
?>
</rows>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -