Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
| <?php | |
| $file_id = "1XSE7fHxtV-etUze91fkbRKaZodDPmQx9G_6Kc8I9sPE"; | |
| $access_token = "ya29.Ci-9A9Ckkgr6hn7Uu2UdNOm8XxK20jHNu3VfDT9mV_LbR2LmCYSo4ced8DOuEZif1g"; | |
| $url = "https://drive.google.com/thumbnail?sz=w320&id=" . $file_id; | |
| $curl = curl_init(); | |
| curl_setopt_array($curl, array( | |
| CURLOPT_URL => $url, |
| <?php | |
| ini_set('memory_limit', '4G'); | |
| if (mb_internal_encoding() != "UTF-8") { | |
| mb_internal_encoding("UTF-8"); | |
| } | |
| $file = "test2.txt"; // 一个编码为gbk的中文文件 | |
| // $encodeings = mb_list_encodings(); |
| #!/bin/sh | |
| # | |
| echo '' | |
| echo '/*教程请参考:极路由Shadowsocks家庭无痛翻墙实践*/' | |
| echo 'https://luolei.org/hiwifi-shadowsocks/' | |
| echo 'by @foru17' | |
| echo '' | |
| echo '' | |
| echo '那一天,' | |
| echo '人类终于回想起了,' |
| <?php | |
| /** | |
| * crontab 时间格式php解析类(PHP 5 >= 5.1.0) | |
| * | |
| * @author 肖武 <tsxw24@gmail.com> | |
| * @link https://code.google.com/p/xwcrontab/ | |
| */ | |
| class XwCrontab { |
| # Example MySQL config file for small systems. | |
| # | |
| # This is for a system with little memory (<= 64M) where MySQL is only used | |
| # from time to time and it's important that the mysqld daemon | |
| # doesn't use much resources. | |
| # | |
| # MySQL programs look for option files in a set of | |
| # locations which depend on the deployment platform. | |
| # You can copy this option file to one of those | |
| # locations. For information about these locations, see: |
| # Example MySQL config file for small systems. | |
| # | |
| # This is for a system with little memory (<= 64M) where MySQL is only used | |
| # from time to time and it's important that the mysqld daemon | |
| # doesn't use much resources. | |
| # | |
| # MySQL programs look for option files in a set of | |
| # locations which depend on the deployment platform. | |
| # You can copy this option file to one of those | |
| # locations. For information about these locations, see: |
| // DON'T FORGET TO IMPORT proxy.conf TOO | |
| [General] | |
| loglevel = notify | |
| skip-proxy = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12,127.0.0.0/24 | |
| bypass-tun = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12,127.0.0.0/24 | |
| // DNS OVERRIDE, REMOVE # IF YOU NEED | |
| # dns-server = 223.6.6.6,223.5.5.5,114.114.114.114,114.114.115.115 |
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: iAtYJ4HpUVfIUoNnif1DA
| <?php | |
| /** | |
| * Created by PhpStorm. | |
| * User: Dray | |
| * Date: 14-7-19 | |
| * Time: 下午4:58 | |
| */ | |
| $update_table = array( | |
| 'table1', |
| #!/bin/env bash | |
| username="" | |
| passwd="" | |
| host="" | |
| db1="" | |
| #连接数据库把表都拉出来 | |
| mysql_tables=`mysql -h $host -u $username -p"$passwd" -e "use $db1; show tables; " | grep -vE "Tables_in_src_master"` |