网站综合信息 xc.hk
    • 标题:
    • notebook | 又一个 WordPress 站点 
    • 关键字:
    •  
    • 描述:
    •  
    • 域名信息
    • 注册日期:  到期时间:
      邮箱:domain  电话:028-86263960
      注册商:Chengdu West Dimension Digital Technology Co., Ltd 
    • 服务器空间
    • IP:8.8.8.8 同IP网站408个 详情
      地址:美国 加利福尼亚州圣克拉拉县山景市谷歌公司DNS服务器
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • Google
    • 0  
    • 0  
    • pr:0  
    • 雅虎
    • 0  
    •  
    •  
    • 搜搜
    • 0  
    •  
    •  
    • 搜狗
    • 0  
    •  
    • 评级:1/10  
    • 360搜索
    • 0  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    xc.hk

    注 册 商: Chengdu West Dimension Digital Technology Co., Ltd
    注册邮箱: domain
    联系电话: 028-86263960

    获取时间: 2016年10月23日 07:12:42
    Whois server by HKIRC

    .hk top level Domain names can be registered via HKIRC-Accredited Registrars.
    Go to https://www.hkirc.hk/content.jsp?id=280 for details.

    Domain Name: XC.HK

    Domain Status: Active

    Contract Version: Refer to registrar

    Registrar Name: Chengdu West Dimension Digital Technology Co., Ltd

    Registrar Contact Information: Email: domain Phone: 028-86263960

    Reseller:

    Registrant Contact Information:

    Holder English Name (It should be the same as your legal name on your HKID card or other relevant documents): LI CHIFENG
    Holder Chinese Name: 李迟丰
    Email: lichifeng
    Domain Name Commencement Date: 08-07-2013
    Country: CN
    Expiry Date: 08-07-2017
    Re-registration Status: Complete
    Account Name: HK7073701T

    Technical Contact Information:

    Given Name: LI
    Family name: CHIFENG
    Company Name: LI CHIFENG

    Name Servers Information:

    NS4.MYHOSTADMIN.NET
    NS5.MYHOSTADMIN.NET

    Status Information:

    Domain Prohibit Status:

    The Registry contains ONLY .com.hk, .net.hk, .edu.hk, .org.hk,
    .gov.hk, idv.hk. and .hk domains.

    WHOIS Terms of Use
    By using this WHOIS search enquiry service you agree to these terms of use.
    The data in HKDNR's WHOIS search engine is for information purposes only and HKDNR does not guarantee the accuracy of the data. The data is provided to assist people to obtain information about the registration record of domain names registered by HKDNR. You agree to use the data for lawful purposes only.

    You are not authorised to use high-volume, electronic or automated processes to access, query or harvest data from this WHOIS search enquiry service.

    You agree that you will not and will not allow anyone else to:

    a. use the data for mass unsolicited commercial advertising of any sort via any medium including telephone, email or fax; or

    b. enable high volume, automated or electronic processes that apply to HKDNR or its computer systems including the WHOIS search enquiry service; or

    c. without the prior written consent of HKDNR compile, repackage, disseminate, disclose to any third party or use the data for a purpose other than obtaining information about a domain name registration record; or

    d. use such data to derive an economic benefit for yourself.

    HKDNR in its sole discretion may terminate your access to the WHOIS search enquiry service (including, without limitation, blocking your IP address) at any time including, without limitation, for excessive use of the WHOIS search enquiry service.

    HKDNR may modify these terms of use at any time by publishing the modified terms of use on its website.
    其他后缀域名
    • 顶级域名
    • 相关信息
    • xc.com
    • 已注册 1995年12月04日
    • xc.net
    • 已注册 1998年04月11日
    • xc.org
    • 已注册 1999年01月05日
    • xc.cn
    • 已注册 2013年12月27日
    网站首页快照(纯文字版)
    抓取时间:2016年09月25日 10:44:28
    网址:http://xc.hk/
    标题:notebook | 又一个 WordPress 站点
    关键字:
    描述:
    主体:
    notebook又一个 WordPress 站点菜单跳至内容首页示例页面test发表回复<?php xxx;?>本条目发布于 2013 年 8 月 18 日。属于 未分类 分类。作者是 admin。剥开多层嵌套括号的函数发表回复//返回结果是一个二维数组//每个元素的子元素分别为[所在深度, 上层元素, 该对括号包含的内容字符串]function peelQuote($string, $quotel='{', $quoter='}') {      $length = strlen($string);$father = 0; $deepth = 0;  $result = array(0=>array(0, -1, ''));  $point = 0;  $p = $point;for($i=0; $i<$length; $i++) {//这个循环将当前字符写到当前括号内容和所有上层括号内容中//设置了一个$x的开关在到达最外层括号时自动停止do {$x = 'y';$result[$p][2] .= $string{$i};$p = $result[$p][1];if($p==-1) {$x = 'n';$p = $point;}            } while($x=='y');//每次遇到左括号就进入下一个层次//并将该层内容写到一个新的结果数组元素中if($string{$i}==$quotel) {$father = $point;$deepth += 1;$point = count($result);$p = $point;            $result[$point] = [$deepth, $father, $quotel];}//每次遇到右括号就把指针定位到对应的上层元素中if($string{$i}==$quoter) {$point = $result[$point][1];$p = $point;$deepth -= 1;$father = $result[$point][1];}}echo '<pre>';print_r($result);echo '</pre>';}本条目发布于 2013 年 8 月 3 日。属于 未分类 分类。作者是 admin。PHP设定页面编码的方法发表回复// 以下方法优先级依次递减//// 方法一、 通过 header() 设置header("Content-Type:text/html;charset=utf-8");// 方法二、 通过apache的设置文件http.conf设置AddDefaultCharset UTF-8  //设置页面编码为uft-8,建议设置为OFF或用#注释掉// 方法三、 通过META属性设置<META charset="UTF-8">//本条目发布于 2013 年 8 月 1 日。属于 未分类 分类。作者是 admin。
    提取HTML代码中的属性名和属性值
    发表回复
    我查了一下HTML标签可能出现的属性名称,发现都是英文单词,不存在下划线等其它字符
    查询的网址如下:
    http://www.w3.org/TR/html4/index/attributes.html
    HTML标签中的属性名和属性值相对固定,所以打算用正则表达式来提取属性名和属性值
    标签的格式认为如下:
    <a href  =  “xc.hk/index.php” target  =  “_blank”>
    属性名为字母组成的英文单词,不含其它符号
    等号两边可能有空白字符
    属性值始终包含在引号内(推荐这么做)
    根据上面的情况采用如下正则表达式:
    ([a-zA-Z]+)\s*=\s*(‘.*?’|”.*?”)
    [a-zA-Z]+  匹配英文单词(属性名),加上括号可以成为preg_match()函数的一个捕获子组
    \s*  匹配等号前后可能出现的空白
    .*?  ?表示尽可能少的匹配
    函数考虑得比较简单,但是对于符合标准的代码应该没问题
    PHP函数:
    //函数名: pickAttr()
    //参数: $string
    //返回值: 数组 array('attrName' => 'attrValue', ...)
    function pickAttr($string) {
    $pattern = '/([a-zA-Z]+)\\s*=\\s*(\'.*?\'|".*?")/';
    preg_match_all($pattern, $string, $match);
    //匹配得到的$match数组固定有3个也为数组的元素
    //分别为$match[0] - 完整模式匹配结果
    //      $match[1] - 第一个捕获子组匹配结果(属性名)
    //      $match[2] - 第二个捕获子组匹配结果(属性值)
    //而且3个子数组的长度也必定相同
    //获取子数组长度(属性的个数)
    $attrnum = count($match[0]);
    $result = Array();
    for($i=0; $i<$attrnum; $i++) {
    $result[$match[1][$i]] = $match[2][$i];
    }
    return $result;
    }
    本条目发布于 2013 年 7 月 30 日。属于 未分类 分类。作者是 admin。
    世界,你好!
    1 条回复
    欢迎使用 WordPress。这是系统自动生成的演示文章。编辑或者删除它,然后开始您的博客!
    本条目发布于 2013 年 7 月 30 日。属于 未分类 分类。作者是 admin。
    搜索:
    近期文章
    test
    剥开多层嵌套括号的函数
    PHP设定页面编码的方法
    提取HTML代码中的属性名和属性值
    世界,你好!
    近期评论WordPress 先生 发表在《世界,你好!》文章归档
    2013 年八月
    2013 年七月
    分类目录
    未分类
    功能
    登录
    文章 RSS
    评论 RSS
    WordPress.org
    自豪地采用 WordPress

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2025-08-29 14:46, Process in 0.0108 second.