摘要:
整个项目搜索关键字(查找某个字符) 选中项目,点击ctrl+shift+f 若不出来搜索框,试着切换一下输入法,ctrl+空格 选中项目,点击ctrl+shift+f 若不出来搜索框,试着切换一下输入法,ctrl+空格 阅读全文
摘要:
自定义验证类 class BaseModel extends Model { public function rules() { return [ ['obj', ContentSecurityValidator::class], ]; } public function exec() { if ( 阅读全文
摘要:
select实现对文本框的显示和隐藏 /** * 通过select的值实现对文本框的显示和隐藏 * #id为一个select控件 * .obj为一个文本框 */ function initSelector() { if ($('#id').val() != 1) { $('.obj').hide() 阅读全文
摘要:
只针对限定1M $data = file_get_contents("输入路径"); $maxSize = 1 * 1024 * 1024; //图片进行压缩 $data = compressImage($data, $maxSize); file_put_contents("输出路径", $dat 阅读全文
摘要:
将图片压缩成jpg或png $type = explode('/', $file->type); $mainType = $type[0]; $subType = $type[1]; $isImage = $mainType == 'image'; $isGif = $subType == 'gif 阅读全文
摘要:
图片验证 public function rules() { return [ [['id'], 'integer'], [['id'], 'required'], [['files'], 'file', 'maxSize' => 50 * 1024 * 1024, 'maxFiles' => 10 阅读全文
摘要:
$tempFile = tempnam(sys_get_temp_dir(), 'temp'); $fhandle = fopen($tempFile, 'w'); fwrite($fhandle, $data);//$data为需要写入的数据 fclose($fhandle); unlink($tempFile); 阅读全文
摘要:
点击文字 .window-red{ color: gold; } var flag = true; var color = 'window'; Page({ click:function(){ if(flag){ color = "window-red"; flag = false; }else{ color =... 阅读全文
摘要:
新建项目 生命周期 //app.js App({ onPageNotFount(){ console.log('page not fount');//页面不存在监听函数 }, onError:function(){ console.log('error');//错误监听函数 }, onShow:fu 阅读全文