본문 바로가기
728x90

study53

phpspredsheet php 엑셀 [root@supply test]# curl -sS https://getcomposer.org/installer | php All settings correct for using Composer Downloading... Composer (version 2.1.12) successfully installed to: /home/lyvly/composer.phar Use it: php composer.phar [root@supply test]# [root@supply test]# sudo mv composer.phar /usr/bin/composer [root@supply test]# composer -V Do not run Composer as root/super user! See https://getco.. 2021. 11. 24.
파일 업로드시 저장 안됨 소스에 별 문제 없어보이는데 파일 저장안되면 디렉토리 소유권을 아파치로 변경해준다. chown apache:root dirname 2021. 11. 23.
php 소수점 버림,올림,반올림 php 에서 소수점 버릴때 $value = 2.24; floor($value); // 2 올림사용 $value = 2.24; echo ceil($value); //3 반올림 사용 $value = 2.24; echo round($value); //2 #소수점 둘째자리에서 반올림 echo round($value,1); //2.2 2021. 11. 19.
jquery click 이벤트 클릭 이벤트 아이디가 change 인 요소를 클릭 했을 때 이벤트 캐치! 해당 소스는 특정 버튼을 눌렀을 때 서버에 데이터를 전송 후 결과값을 받기위해 사용한 것이다. $('#change').on('click',function(){ console.log(arr); $.ajax({ url:'/~~~~~.php', data: { arr: arr }, dataType: 'json', method: 'post' }).done(function (result) { location.reload(); alert(result.msg); }).fail(function(e){ console.log(e); alert(result.msg); }); }); 클래스가 change인 요소를 클릭했을 때! $('.change').on('click.. 2021. 11. 12.
Ckeditor4 placeholder 한 페이지에 여러개의 에디터를 뒀을 때 각자 다른 placeholder를 줘야하는 상황에 사용할 수 있다. 해당 사이트 들어가서 플러그인 다운받고 plugins 폴더에 넣는다! https://ckeditor.com/docs/ckeditor4/latest/features/editorplaceholder.html Editor Placeholder - CKEditor 4 Documentation Learn how to install, integrate and configure CKEditor 4. More complex aspects, like creating plugins, widgets and skins are explained here, too. API reference and examples inclu.. 2021. 11. 8.
javascript indexOf 몇번째 내가 찾고자 하는 요소가 배열,문자열에 몇번째에 있는지 찾는 법 이름.indexOf(찾고자하는이름) aCategory.indexOf(44) 겹치는 값이 있으면 몇번째 자리에 있는지 모두 알려주는 게 아니라 먼저 앞에 있는 수의 자리를 알려준다! 2021. 11. 1.