⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlb.php

📁 WEB表格控件
💻 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["posStart"])){
		$_GET["posStart"] = 0;
	}
?>
<rows pos="<?=$_GET['posStart']?>">
	<?php
		if($_GET["posStart"]<5000){
			$start = $_GET["posStart"]+1;
			$to = $start+50;
			for($i = $start;$i<$to;$i++){
				print("<row id='r$i'><first>index is $i</first><second>altermative xml format</second><third>xmlB</third></row>");
			}
		}
	?>
</rows>	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -