- 浏览: 13731458 次
- 性别:
- 来自: 洛杉矶
文章分类
- 全部博客 (1994)
- Php / Pear / Mysql / Node.js (378)
- Javascript /Jquery / Bootstrap / Web (435)
- Phone / IOS / Objective-C / Swift (137)
- Ubuntu / Mac / Github / Aptana / Nginx / Shell / Linux (335)
- Perl / Koha / Ruby / Markdown (8)
- Java / Jsp (12)
- Python 2 / Wxpython (25)
- Codeigniter / CakePHP (32)
- Div / Css / XML / HTML5 (179)
- WP / Joomla! / Magento / Shopify / Drupal / Moodle / Zimbra (275)
- Apache / VPN / Software (31)
- AS3.0/2.0 / Flex / Flash (45)
- Smarty (6)
- SEO (24)
- Google / Facebook / Pinterest / SNS (80)
- Tools (22)
最新评论
-
1455975567:
xuezhongyu01 写道wocan23 写道我想问下那个 ...
Mysql: LBS实现查找附近的人 (两经纬度之间的距离) -
xuezhongyu01:
wocan23 写道我想问下那个111.1是怎么得来的我也看不 ...
Mysql: LBS实现查找附近的人 (两经纬度之间的距离) -
18335864773:
试试 pageoffice 在线打开 PDF 文件吧. pag ...
jquery在线预览PDF文件,打开PDF文件 -
青春依旧:
opacity: 0.5; 个人喜欢这种方式!关于其他css特 ...
css透明度的设置 (兼容所有浏览器) -
July01:
推荐用StratoIO打印控件,浏览器和系统的兼容性都很好,而 ...
搞定网页打印自动分页问题
Display Alexa Traffic Rank Statistics (Alexa/yahoo/google)
<!--Daily Traffic Rank Trend-->
<script language="JavaScript" type="text/javascript" src="http://xsltcache.alexa.com/traffic_graph/js/g/b/6m?&u=http%3A%2F%2Fwww.iteye.com+++++"></script>
<!--Daily Traffic Rank Trend-->
<img src="http://traffic.alexa.com/graph?&w=400&h=220&o=f&c=1&y=t&b=ffffff&r=1m&u=iteye.com&">
<!--Daily Reach in Percent-->
<img src="http://traffic.alexa.com/graph?&w=400&h=220&o=f&c=1&y=r&b=ffffff&r=1m&u=iteye.com&">
<!--Daily Page Views-->
<img src="http://traffic.alexa.com/graph?&w=400&h=220&o=f&c=1&y=p&b=ffffff&r=1m&u=iteye.com&">
<!--Daily Traffic Rank Trend--> <script language="JavaScript" type="text/javascript" src="http://xsltcache.alexa.com/traffic_graph/js/g/b/6m?&u=http%3A%2F%2Fwww.iteye.com+++++"></script> <!--Daily Traffic Rank Trend--> <img src="http://traffic.alexa.com/graph?&w=400&h=220&o=f&c=1&y=t&b=ffffff&r=1m&u=iteye.com&"> <!--Daily Reach in Percent--> <img src="http://traffic.alexa.com/graph?&w=400&h=220&o=f&c=1&y=r&b=ffffff&r=1m&u=iteye.com&"> <!--Daily Page Views--> <img src="http://traffic.alexa.com/graph?&w=400&h=220&o=f&c=1&y=p&b=ffffff&r=1m&u=iteye.com&">
Rank as per alexa.com:
<?php function AlexaRank( $url ) { preg_match( '#<POPULARITY URL="(.*?)" TEXT="([0-9]+){1,}"/>#si', file_get_contents('http://data.alexa.com/data?cli=10&dat=s&url=' . $url), $p ); return ( $p[2] ) ? number_format( intval($p[2]) ):0; } echo "Rank as per alexa.com: <br />"; $domains = array( 'google.com', 'qq.com', 'yahoo.com', 'bing.com' ); foreach ( $domains as $domain ) echo $domain, ' - ', AlexaRank( $domain ), '<br />', PHP_EOL; ?>
Google Inlinks amount
Google Backlinks amount
Yahoo Inlinks amount
Yahoo Backlinks amount
Alexa Ranking
<?PHP echo alexa('qq.com'); function googleindexed($domain) { $results=''; $query="http://www.google.com/search?q=site:".urlencode($domain).""; $results=file_get_contents($query); preg_match("/About (.+?) results/", strip_tags($results), $match); return (isset($match) && isset($match[1])) ? $match[1] : 0; } function googlebls($domain) { $results=''; $query="http://www.google.com/search?q=link:".urlencode($domain).""; $results=file_get_contents($query); preg_match('/<div id=resultStats>(.+?) result/ism', $results, $match); return (isset($match) && isset($match[1])) ? str_replace('About ','',$match[1]) : 0; } function yahooindexed($domain) { $results=''; $query="http://siteexplorer.search.yahoo.com/siteexplorer/search?ei=UTF-8&p=".urlencode($domain)."&bwm=p&bwms=p&searchbwm=Explore+URL"; $results=file_get_contents($query); preg_match("/Pages \((.+?)\)/", strip_tags($results), $match); @$matchtrimmed=array_walk($match,'trim_value'); return (isset($match) && isset($match[1])) ? trim(str_replace("about","",$match[1])) : 0; } function yahoobls($domain) { $results=''; $query="http://siteexplorer.search.yahoo.com/siteexplorer/search?ei=UTF-8&p=".urlencode($domain)."&bwm=p&bwms=p&searchbwm=Explore+URL"; $results=file_get_contents($query); preg_match("/Inlinks \((.+?)\)/", strip_tags($results), $match); return (isset($match) && isset($match[1])) ? trim(str_replace("about","",$match[1])) : 0; } function alexa($domain){ $results = ''; $query = 'http://www.alexa.com/siteinfo/'.$domain; $results=file_get_contents($query); preg_match('%<img src="/images/icons/globe-sm.jpg" alt="Global" style="margin-bottom:-2px;"/>(.+?)</div>%ism', $results, $match); return (isset($match) && isset($match[1])) ? trim($match[1]) : 0; } ?>
发表评论
-
PHP: 在类(class)中加载动态函数, 变量函数或半变量函数 variable function/method
2016-09-03 07:54 7171最终实例在下方 以前 ... -
MySQL入门 (七) : 储存引擎与资料型态
2016-09-03 07:49 45531 表格与储存引擎 表格(table)是资料库中用来储存 ... -
MySQL入门 (六) : 字元集与资料库
2016-09-03 07:47 45661 Character Set与Collation 任何 ... -
MySQL入门 (五) : CRUD 与资料维护
2016-09-03 07:46 54811 取得表格资讯 1.1 DESCRIBE指令 「 ... -
MySQL入门 (四) : JOIN 与UNION 查询
2016-09-03 07:42 45001 使用多个表格 在「world」资料库的「countr ... -
PHP: 关键字global 和 超全局变量$GLOBALS的用法、解释、区别
2016-08-31 12:07 5039$GLOBALS 是一个关联数组,每一个变量为一个 ... -
MySQL入门 (三) : 运算式与函式
2016-08-31 12:01 4383运算式(expressions)已经 ... -
MySQL入门 (二) : SELECT 基础查询
2016-08-31 11:56 46811 查询资料前的基本概念 1.1 表格、纪录 ... -
MySQL入门 (一) : 资料库概论与MySQL的安装
2016-08-31 11:51 44571. 储存与管理资料 储存与管理资料一直是资讯应用上最基本 ... -
MySQL入门 (九) : 子查询 Subquery
2016-08-30 02:26 44471 一个叙述中的查询叙述 子查询(subquery)是一 ... -
PHP: 用readonly取代disabled来获取input值 submit a disabled input in a form could not ge
2016-08-30 02:21 2708The form is like below; <f ... -
PHP7革新与性能优化
2016-08-30 02:20 2146有幸参与2015年的PHP技 ... -
Mysql: 图解 inner join、left join、right join、full outer join、union、union all的区别
2016-08-18 06:03 3122对于SQL的Join,在学习起来可能是比较乱的。我们知道, ... -
Comet 反Ajax: 基于jQuery与PHP实现Ajax长轮询(LongPoll)
2016-08-18 06:00 1377传统的AJAX轮询方式,客服端以用户定义的时间间隔去服务器上 ... -
PHP:ServerPush (Comet推送) 技术的探讨
2016-08-18 05:58 1039PHP中Push(推送)技术的探讨 [http://vi ... -
PHP: 手把手编写自己的 MVC 框架实例教程
2016-08-16 05:33 18131 什么是MVC MVC模式(Model-View-Con ... -
PHP5: mysqli 插入, 查询, 更新和删除 Insert Update Delete Using mysqli (CRUD)
2016-07-29 12:55 1747原文: PHP5: mysqli 插入, 查询, 更新 ... -
MongoDB 教程索引 (附有视频)
2016-07-27 10:54 736MongoDB 教程索引 MongoDB 教程一: ... -
Node.js 模块之Nimble流程控制
2016-07-18 12:59 1081NodeJS异步的特性有时候 ... -
Node.js web应用模块之Supervisor
2016-07-18 12:56 2327在开发或调试Node.js应 ...
相关推荐
display(10); } if(d == 5) { TR0 = 1; //开启计时 display(a); r = 1; i = 1; } if(a >= 0 && a ) //倒计时中 { if(d ==1 || d == 2 || d == 3 || d == 4) //任何一个选手按键 { if(y == 0) { t = ...
标题中的“display.rar_VHDL/FPGA/Verilog_VHDL_”暗示了这是一个与数字显示相关的项目,其中包含了VHDL(Very High-Speed Integrated Circuit Hardware Description Language)和Verilog HDL(Hardware Description...
### DP1.4标准——VESA Proposed DisplayPort (DP) Standard #### 概述 DisplayPort(简称DP)是由视频电子标准协会(VESA)制定的一种数字显示接口标准,旨在提供一种灵活、高效的数字通信接口,用于源设备...
OLED0561屏汉字与图片显示程序STM32F103单片机实验例程源码 main (void){//主程序 u8 buffer[3]; delay_ms(100); //上电时等待其他器件就绪 RCC_Configuration(); //系统时钟初始化 ... OLED_DISPLAY_1
本文将详细探讨全志H5在Android/Linux环境下如何实现display驱动。 一、全志H5显示硬件架构 全志H5集成了GPU(图形处理器),如Mali400或Mali-G31,用于处理复杂的2D和3D图形任务。此外,它还包含LCD控制器,用于与...
fonts.googleapis.com 加载慢,360公司也不再提供服务(fonts.useso.com),所以就从google上扒下来,把css和字体文件都放到本地。也可以根据这个例子,自己整理需要的css和fonts。
VESA DDC协议标准(Display Data Channel Command Interface (DDC/CI) Standard) 包括应用实例及代码 (VESA DDC protocol standards (display data channel command interface standard), including application ...
Display Port 1.4规范是视频电子标准协会(VESA)制定的一个开放的数字通信接口标准,主要被用作内部连接(如PC内部接口和显示器)和外部显示设备(如PC与显示器、投影仪或电视之间的接口)之间的连接。Display Port...
MAX4998/MAX14998高速无源开关可在笔记本电脑或台式PC之间切换DisplayPort?信号。MAX4998/MAX14998设计用于需要超高速率和最小输入电容的应用。 MAX4998具有三路双刀/双掷(DPDT)开关和一路单刀/双掷(SPDT)开关。...
"display标签使用" display标签是Java Web开发中常用的标签库之一,主要用于数据展示和格式化。下面是display标签的基本用法和常见功能实现。 一、改变空记录提示语言 在display:table标签中,可以使用_display:...
This application requires Display Data Channel Command Interface (DDC/CI) to work. Dell monitors support DDC/CI on VGA, DVI, DP and HDMI inputs. DDC/CI is not supported on USB connection.
NOTE: Open the above link in Google Chrome... 如果您有要加入我的渐变调色板的任何渐变,请提出要求或在问题中编写颜色的十六进制代码... 调色板中使用的字体 @import url ( '...
} else if (resolutionWidth >= 800 && (document.getElementById('ad_float_left').style.display === 'none' || document.getElementById('ad_float_right').style.display === 'none')) { document....
然而,当我们尝试获取一个CSS样式为display:none的元素的高度和宽度时,会发现常规的JavaScript方法无法直接获取这些尺寸值,因为display:none的元素没有物理尺寸。为了获得这些隐藏元素的尺寸信息,需要采用一些...
Detailed statistics information + Bit numbers for the picture & encoding rate + CU bit histogram per mb type + CU bit display in Binary View Overlay display on + Bit numbers for each CU + Block ...
Android WiFi Display功能优化 Android WiFi Display功能优化是指在Android系统中,WiFi Display功能的优化建议,以提高该功能的性能和可维护性。本文将从架构图、代码分析和优化建议三个方面对Android WiFi ...
如果要显示动态图像,例如动画,可以利用`display.fillRect()`、`display.drawCircle()`等函数绘制帧,并在`loop()`函数中不断改变帧的内容。 **总结** 通过以上步骤,你已经了解了如何使用Arduino Uno驱动0.96寸...
//#define TM1640MEDO_DISPLAY 0x88 //宏定义 亮度 最小 //#define TM1640MEDO_DISPLAY 0x89 //宏定义 亮度 #define TM1640MEDO_DISPLAY 0x8a //宏定义 亮度 //#define TM1640MEDO_DISPLAY 0x8b //宏定义 亮度 //#...