├── .editorconfig ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docker-compose.yml ├── include ├── 60s.php ├── ArrayRandom.php ├── bili.php ├── bing.php ├── blacklist.php ├── changya.php ├── douyin.php ├── eventsOnHistory.php ├── ext-rates.php ├── ip │ ├── index.php │ └── ip2region │ │ └── XdbSearcher.php ├── maoyan.php ├── toutiao.php ├── utils.php ├── weather.php ├── weibo.php └── zhihu.php ├── index.php ├── jsonData ├── answer.json ├── duanzi.json ├── fabing.json ├── hitokoto.json └── luck.json ├── nginx-60s.conf └── reader ├── README.md ├── favicon.svg ├── index.html ├── index.js └── news.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /include/60s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/60s.php -------------------------------------------------------------------------------- /include/ArrayRandom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/ArrayRandom.php -------------------------------------------------------------------------------- /include/bili.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/bili.php -------------------------------------------------------------------------------- /include/bing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/bing.php -------------------------------------------------------------------------------- /include/blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/blacklist.php -------------------------------------------------------------------------------- /include/changya.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/changya.php -------------------------------------------------------------------------------- /include/douyin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/douyin.php -------------------------------------------------------------------------------- /include/eventsOnHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/eventsOnHistory.php -------------------------------------------------------------------------------- /include/ext-rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/ext-rates.php -------------------------------------------------------------------------------- /include/ip/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/ip/index.php -------------------------------------------------------------------------------- /include/ip/ip2region/XdbSearcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/ip/ip2region/XdbSearcher.php -------------------------------------------------------------------------------- /include/maoyan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/maoyan.php -------------------------------------------------------------------------------- /include/toutiao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/toutiao.php -------------------------------------------------------------------------------- /include/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/utils.php -------------------------------------------------------------------------------- /include/weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/weather.php -------------------------------------------------------------------------------- /include/weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/weibo.php -------------------------------------------------------------------------------- /include/zhihu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/include/zhihu.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/index.php -------------------------------------------------------------------------------- /jsonData/answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/jsonData/answer.json -------------------------------------------------------------------------------- /jsonData/duanzi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/jsonData/duanzi.json -------------------------------------------------------------------------------- /jsonData/fabing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/jsonData/fabing.json -------------------------------------------------------------------------------- /jsonData/hitokoto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/jsonData/hitokoto.json -------------------------------------------------------------------------------- /jsonData/luck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/jsonData/luck.json -------------------------------------------------------------------------------- /nginx-60s.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/nginx-60s.conf -------------------------------------------------------------------------------- /reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/reader/README.md -------------------------------------------------------------------------------- /reader/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/reader/favicon.svg -------------------------------------------------------------------------------- /reader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/reader/index.html -------------------------------------------------------------------------------- /reader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/reader/index.js -------------------------------------------------------------------------------- /reader/news.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzwme/60s-php/HEAD/reader/news.css --------------------------------------------------------------------------------