4月 11, 2017 - php开发, 有料    使用Laravel5.1的图片上传与剪切已关闭评论

使用Laravel5.1的图片上传与剪切

1.composer require intervention/image

创建一个控制器ImageController

路由:Route::get('shangchuan','ImageController@get');

Route::post('shangchuan','ImageController@post');

2.修改 app/config/app.php 添加 ServiceProvider:

// 将下面代码添[......]

Read more

4月 11, 2017 - php开发, 有料    1 评论

常用的正则表达式

正则是记得很费劲,好不容易记住了,时间一长不用它,写的时候就没有那么多的信心,总是还要查一下手册确保万无一失,下面是一些常用的正则,下次直接用就ok了,废话不多说,上:
电子邮件:/\w+([-+.’]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/
变量:/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/
基于php常用正则表达式的整理汇总
/\w+([-+.’]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/  电子邮件
"^\d+$&quo[……]

Read more

4月 11, 2017 - jquery, php开发    2 Comments

JQuery发送Ajax请求

先看一下界面:

首先写一个简单的前端界面:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script type="text/java[……]

Read more