2018/07 27

PHP7 Closure::call() - 클루저 콜

New features PHP 7 - Closure::call() 클루저 콜 PHP7은 이전 bintTo()보다 훨씬 더 빠릅니다. Pre PHP7 class A { private $x = 1; } // php7 이전 클루저 정의 $getValue = function() { return $this->x; }; // 클루저 바인딩(연결)) $value = $getValue->bindTo(new A, 'A'); var_dump($value()); // 1 PHP7 class A { private $x = 1; } // PHP 7+ code, Define $value = function() { return $this->x; }; var_dump($value->call(new A)); // 1

lang/php 2018.07.31

Backup rsync

How to Use rsync to Backup Your Data on LinuxHow to Backup Linux? 15 rsync Command Examples Installation # Ubuntu sudo apt-get install rsync # CentOs yum install rsync Backup (내부 백업) # Directory1 에서 Directory2로 백업 rsync -av --delete /Directory1/ /Directory2/ Options -a 재귀 (디렉토리로 반복), 링크 (심볼릭 링크로 심볼릭 링크 복사), perms (사용 권한 유지), 시간 (수정 시간 보존), 그룹 (그룹 보존), 소유자 (소유자 보존), 장치 파일 보존 및 특수 보존 파일. (단 전송시 타임..

os/Linux 2018.07.24

MariaDB 10.0.3 Install For Ubuntu 18.04

Downloads Setting up MariaDB Repositories 우분투 저장소에 10.0.1 이 기본으로 제공되므로 10.0.1을 사용하는게 좋다는 안내문구. MariaDB 10.3 저장소 키 등록 sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://ftp.harukasan.org/mariadb/repo/10.3/ubuntu bionic main' 저장소 등록 sources.list 하단에..

db/mysql 2018.07.20
반응형