Skip to content

Instantly share code, notes, and snippets.

public function getToken(){
$accessKey = '';
$secretKey = '';
$bucket = "";
$time = now() + 3600;
$data = array(
"scope"=>$bucket,
public function getBalance($user_id)
{
//查询进行中且未确认的众筹,存在则筹得的金额为冻结金额
$project = DB::connection('tcl_mysql')->table('tcl_projects')
->where('is_done', 0)
->where('user_id', $user_id)
->where('end_time', '<=',Carbon::now())
->first();
$amount_frozen = 0;
if($project){
@beansme
beansme / laravel-pagination
Created July 31, 2014 12:22
laravel-pagination
@for($i = 1; $i <= $fans->getLastPage(); $i++)
<span><a href="{{$fans->getUrl($i)}}" class="{{$fans->getCurrentPage() == $i ? 'active' : '' ;}}">{{$i}}</a></span>
@endfor
curl -s http://getcomposer.org/installer| php
sudo mv composer.phar /usr/bin/composer
@beansme
beansme / 0_reuse_code.js
Created August 19, 2014 05:37
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
// JavaScript Document
var maskTop = 1008;
(function($,window , undefined){
//ADS的命名空间
if(!window.ADS){window['ADS'] = {}}
//摇一摇
var shake = {
speed:10,
@beansme
beansme / phpunit-xml
Created September 22, 2014 02:33
phpunit-xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true"
#!/usr/bin/env python
# coding=utf8
# author=evi1m0
# website=linux.im
'''
12306 Captcha Picture:
author: Evi1m0@20150316
1. Download Captcha
2. Pic Conver Text
@beansme
beansme / config.json
Created October 16, 2015 07:45
composer国内镜像 ~/.composer/config.json
{
"repositories": [
{"type": "composer", "url": "http://packagist.phpcomposer.com"},
{"packagist": false}
]
}
@beansme
beansme / trim emoji
Created November 6, 2015 07:09
去除表情
preg_replace('/([0-9|#][\x{20E3}])|[\x{00ae}|\x{00a9}|\x{203C}|\x{2047}|\x{2048}|\x{2049}|\x{3030}|\x{303D}|\x{2139}|\x{2122}|\x{3297}|\x{3299}][\x{FE00}-\x{FEFF}]?|[\x{2190}-\x{21FF}][\x{FE00}-\x{FEFF}]?|[\x{2300}-\x{23FF}][\x{FE00}-\x{FEFF}]?|[\x{2460}-\x{24FF}][\x{FE00}-\x{FEFF}]?|[\x{25A0}-\x{25FF}][\x{FE00}-\x{FEFF}]?|[\x{2600}-\x{27BF}][\x{FE00}-\x{FEFF}]?|[\x{2900}-\x{297F}][\x{FE00}-\x{FEFF}]?|[\x{2B00}-\x{2BF0}][\x{FE00}-\x{FEFF}]?|[\x{1F000}-\x{1F6FF}][\x{FE00}-\x{FEFF}]?/u', '', $var);