This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
ch := make(chan int, 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING); | |
date_default_timezone_set('PRC'); | |
define('APP_PATH', dirname(__FILE__)); | |
class CONFIG | |
{ | |
const EMAIL = [ | |
'host' => 'xxx.com', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* PHP time debug | |
* @param string $mark | |
* @param string $separate | |
* @return array | |
*/ | |
function timeDebug($mark, $echo = true, $separate) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Symfony\Component\HttpFoundation\Request; | |
error_reporting(0); | |
$uri = parse_url($_SERVER['REQUEST_URI'])['path']; | |
$uri = trim($uri, '/'); | |
if (in_array($uri, [ | |
'', 'app.php', | |
'settings', 'app.php/settings', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* simple curl | |
* @param string $url | |
* @param array $param | |
* @return mix | |
*/ | |
function simpleCurl($url = '', $param = []) { | |
// params init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isIplongInnerUse($ipLong) | |
{ | |
// 0.0.0.0 – 0.255.255.255 软件 | |
if ($ipLong >= 0 && $ipLong <= 16777215) return 16777215 + 1; | |
// 10.0.0.0 – 10.255.255.255 专用网络 | |
if ($ipLong >= 167772160 && $ipLong <= 184549375) return 184549375 + 1; | |
// 100.64.0.0 – 100.127.255.255 专用网络 | |
if ($ipLong >= 1681915904 && $ipLong <= 1686110207) return 1686110207 + 1; | |
// 127.0.0.0 – 127.255.255.255 主机 | |
if ($ipLong >= 2130706432 && $ipLong <= 2147483647) return 2147483647 + 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
error_reporting(0); | |
$pin = new pin(); | |
# echo $pin->Pinyin('王海燕','UTF8'); | |
$dd = listDir('./'); | |
$p = './'; | |
foreach ($dd['lists'] as $d) { | |
$newName = $pin->Pinyin($d['name'], 'UTF8'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function warningPage($title, $desc) | |
{ | |
die("<!DOCTYPE html><html><body style='background-color:#ce3426;color:white;position:absolute;left:30%;top:30%;'><h1>$title</h1><pre>$desc</pre></body></html>"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getFullURL() | |
{ | |
$s = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 's' : ''; | |
$p = strtolower($_SERVER['SERVER_PROTOCOL']); | |
$protocol = substr($p, 0, strpos($p, '/')) . $s; | |
$host = $_SERVER['HTTP_HOST'] ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_ADDR']; | |
$uri = $_SERVER['REQUEST_URI'] == '/' ? '' : $_SERVER['REQUEST_URI']; | |
return urldecode("$protocol://$host$uri"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$fileName = __DIR__ . '/file.txt'; | |
$fp = fopen($fileName, 'r'); | |
while(!feof($fp)) { | |
$buffer = fgets($fp, 4096); | |
$k = mt_rand(0, 9); | |
$res[$k][] = $buffer; | |
} | |
fclose($fp); |
NewerOlder