自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

景山编程-顺道编程

编程里面营销最好的,营销里面写书最好的,写书里面大数据最好的,大数据里面管理最好的...

  • 博客(29)
  • 资源 (3)
  • 收藏
  • 关注

原创 [李景山php]每天laravel-20161028|Translator.php

<?phpnamespace Illuminate\Translation;use Illuminate\Support\Arr;use Illuminate\Support\Str;use Illuminate\Support\Collection;use Illuminate\Support\NamespacedItemResolver;use Symfony\Component\Tra

2016-08-31 09:08:15 268

原创 [李景山php]每天laravel-20161027|FileLoader.php

<?phpnamespace Illuminate\Translation;use Illuminate\Filesystem\Filesystem;class FileLoader implements LoaderInterface{// FileLoader implements Loader Interface /** * The filesystem instance.

2016-08-31 09:07:39 236

原创 [李景山php]每天laravel-20161026|TranslationServiceProvider.php

<?phpnamespace Illuminate\Translation;use Illuminate\Support\ServiceProvider;// namesapceclass TranslationServiceProvider extends ServiceProvider{// son and father /** * Indicates if loadin

2016-08-30 09:11:04 303

原创 [李景山php]每天laravel-20161026|TranslationServiceProvider.php

<?phpnamespace Illuminate\Translation;use Illuminate\Support\ServiceProvider;// namesapceclass TranslationServiceProvider extends ServiceProvider{// son and father /** * Indicates if loadin

2016-08-30 09:09:27 400

原创 [李景山php]每天laravel-20161025|LoaderInterface.php

<?phpnamespace Illuminate\Translation;interface LoaderInterface{// a trait like loader /** * Load the messages for the given locale. * * @param string $locale * @param strin

2016-08-30 09:08:47 355

原创 [李景山php]每天laravel-20161024|ArrayLoader.php

<?phpnamespace Illuminate\Translation;// set namespaceclass ArrayLoader implements LoaderInterface{// a arrayloader to implements loader Interface /** * All of the translation messages.

2016-08-30 09:08:10 300

原创 [李景山php]每天laravel-20161023|Reponse.php

<?phpnamespace Illuminate\Http;use Exception;use ArrayObject;use JsonSerializable;use Illuminate\Contracts\Support\Jsonable;use Illuminate\Contracts\Support\Renderable;use Symfony\Component\HttpFo

2016-08-30 09:07:10 464

原创 [李景山php]每天laravel-20161022|Request.php-3

//2016-08-26 /** * Check that the given file is a valid file instance. * * @param mixed $file * @return bool */ protected function isValidFile($file) { re

2016-08-29 09:22:02 457

原创 [李景山php]每天laravel-20161021|Request.php-2

/** * Determine if the current request URL and query string matches a pattern. * * @param mixed string * @return bool */ public function fullUrlIs() {// check string

2016-08-26 09:04:21 281

原创 [李景山php]每天laravel-20161020|Request.php-1

<?phpnamespace Illuminate\Http;use Closure;use ArrayAccess;use SplFileInfo;use RuntimeException;use Illuminate\Support\Arr;use Illuminate\Support\Str;use Illuminate\Support\Traits\Macroable;use

2016-08-25 09:11:06 267

原创 [李景山php]每天laravel-20161019|RedirectResponse.php-2

/** * Add multiple cookies to the response. * * @param array $cookies * @return $this */ public function withCookies(array $cookies) { foreach ($cookies as $c

2016-08-24 09:10:28 319

原创 [李景山php]每天laravel-20161018|RedirectResponse.php-1

namespace Illuminate\Http;use BadMethodCallException;use Illuminate\Support\Str;use Illuminate\Support\MessageBag;use Illuminate\Support\ViewErrorBag;use Illuminate\Session\Store as SessionStore;u

2016-08-23 09:10:32 529

原创 [李景山php]每天laravel-20161017|UploadedFile.php

<?phpnamespace Illuminate\Http;use Illuminate\Support\Traits\Macroable;use Symfony\Component\HttpFoundation\File\UploadedFile as SymfonyUploadedFile;// more name space and traitclass UploadedFile ex

2016-08-19 09:13:59 801

原创 [李景山php]每天laravel-20161017|ResponseTrait.php

<?phpnamespace Illuminate\Http;trait ResponseTrait{// a real trait be set /** * Get the status code for the response. * * @return int */ public function status() {

2016-08-19 09:13:09 341

原创 [李景山php]每天laravel-20161016|JsonResponse.php

<?phpnamespace Illuminate\Http;use JsonSerializable;use InvalidArgumentException;use Illuminate\Contracts\Support\Jsonable;use Illuminate\Contracts\Support\Arrayable;use Symfony\Component\HttpFound

2016-08-19 09:12:26 730

原创 [李景山php]每天laravel-20161015|HttpResponseWxception.php-15

<?phpnamespace Illuminate\Http\Exception;use RuntimeException;use Symfony\Component\HttpFoundation\Response;class HttpResponseException extends RuntimeException{ /** * The underlying respons

2016-08-18 09:05:44 210

原创 [李景山php]每天laravel-20161014|Validator.php-14

//2016-08-16 /** * Parse a parameter list. * * @param string $rule * @param string $parameter * @return array */ protected function parseParameters($rule, $par

2016-08-17 08:54:40 382

原创 [李景山php]每天laravel-20161013|Validator.php-13

/** * Get the displayable name of the attribute. * * @param string $attribute * @return string */ protected function getAttribute($attribute) {// Get the displayable

2016-08-16 09:02:34 246

原创 [李景山php]每天laravel-20161012|Validator.php-12

/** * Get the inline message for a rule if it exists. * * @param string $attribute * @param string $lowerRule * @param array $source * @return string|null */

2016-08-15 09:04:12 3746

原创 [李景山php]每天laravel-20161011|Validator.php-11

/** * Given two date/time strings, check that one is after the other. * * @param string $format * @param string $before * @param string $after * @return bool */

2016-08-12 09:09:51 236

原创 [李景山php]每天laravel-20161010|Validator.php-10

/** * Validate the guessed extension of a file upload is in a set of file extensions. * * @param string $attribute * @param mixed $value * @param array $parameters

2016-08-11 09:05:14 216

原创 [李景山php]每天laravel-20161009|Validator.php-9

/** * Get the excluded ID column and value for the unique rule. * * @param array $parameters * @return array */ protected function getUniqueIds($parameters) {

2016-08-10 09:25:59 357

原创 [李景山php]每天laravel-20161008|Validator.php-8

/** * Validate an attribute is contained within a list of values. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool

2016-08-09 09:14:37 196

原创 [李景山php]每天laravel-20161007|Validator.php-7

/** * Validate that an attribute is an array. * * @param string $attribute * @param mixed $value * @return bool */ protected function validateArray($attribute, $v

2016-08-08 09:04:58 191

原创 [李景山php]每天laravel-20161006|Validator.php-6

/** * Validate that an attribute is different from another attribute. * * @param string $attribute * @param mixed $value * @param array $parameters * @return bool

2016-08-05 09:23:28 204

原创 [李景山php]每天laravel-20161005|Validator.php-5

/** * Validate that an attribute exists when any other attribute exists. * * @param string $attribute * @param mixed $value * @param mixed $parameters * @return bo

2016-08-04 09:03:54 218

原创 [李景山php]每天laravel-20161004|Validator.php-4

/** * Determine if it's a necessary presence validation. * * This is to avoid possible database type comparison errors. * * @param string $rule * @param string $attrib

2016-08-03 09:09:35 259

原创 [李景山php]每天laravel-20161003|Validator.php-3

/** * Validate a given attribute against a rule. * * @param string $attribute * @param string $rule * @return void */ protected function validate($attribute, $rule

2016-08-02 09:03:00 348

原创 [李景山php]每天laravel-20161002|Validator.php-2

/** * After an after validation callback. * * @param callable|string $callback * @return $this */ public function after($callback) { $this->after[] = function

2016-08-01 09:05:57 409

spark 机器学习 第二版 含源码 高清版本

高清的spark 机器学习 电子书 第二版本,内含完成的 java python scala r 对应的操作源码及数据

2019-04-04

高仿京东首页

高仿静态京东资源

2017-05-11

windows 64 redis 2.8

2016-07-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除