代码拉取完成,页面将自动刷新
<?php
/**
* Read nsdata file and return raw string
* @author Johnson Liu
* @version v1.0
*/
function readNsdata() {
require( __DIR__ . '/nsdata.php');
return $nsdata;
}
/**
* Replace all labels in nsdata file
* @author Johnson Liu
* @version v1.0
*/
function translateNsdata( $ip_pool, $nsdata, $serial = false ) {
$output_data = '';
if ($serial) $ip_pool['serial'] = $serial;
else $ip_pool['serial'] = date('YmdH');
$nsdata_lines = explode(PHP_EOL, $nsdata);
// process by line
foreach ( $nsdata_lines as $line ) {
$start = strpos($line, '\\');
$end = strrpos($line, '\\');
// need label
if ( $start && $end ) {
$label = substr($line, $start+1, $end-$start-1);
// label exists
if ( $ip_pool[$label] )
$output_data = $output_data . substr($line, 0, $start) . $ip_pool[$label] . substr($line, $end+1, strlen($line)-$end) . PHP_EOL;
// no label needed
} else {
$output_data = $output_data . $line . PHP_EOL;
}
}
return $output_data;
}
?>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。