목록IT 인터넷 (520)
반업주부의 일상 배움사
아래와 같이 결과가 나온다면. object(NeverBounce\Object\VerificationObject)#4 (1) { ["response":protected]=> array(9) { ["status"]=> string(7) "success" ["result"]=> string(7) "invalid" ... 아래와 같이 변환하세요. $reflector = new \ReflectionClass($result); $classProperty = $reflector->getProperty('response'); $classProperty->setAccessible(true); $data = $classProperty->getValue($result); 영어, 중국어 공부중이신가요? 홈스쿨 교재. 한 권으..
PHP 코드 내에서 다른 사이트의 API를 사용해야 하는 경우가 있어요. POST로 호출할 때 사용하면 돼요. $url = 'https://banjubu.com/api/get_some'; $data = ['foo1' => 'var1', 'foo2' => 'var2']; $options = [ 'http' => [ 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => 'POST', 'content' => http_build_query($data), ] ]; $context = stream_context_create($options); $result = file_get_contents($url, false, $contex..
맥 최신 버전에서 AIR 런타임이 실행이 안 되거나 앱이 설치가 안 되면 터미널을 열고 아래 세 줄을 실행하세요. cd /Library/Frameworks sudo chmod 777 ./Adobe\ AIR.framework/ sudo xattr -r -d com.apple.quarantine ./Adobe\ AIR.framework 영어, 중국어 공부중이신가요? 홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요! 한GLO 미네르바에듀 : 네이버쇼핑 스마트스토어 한글로 영어가 된다?! 한글로[한GLO]는 영어 중국어 일어 러시아어 스페인어가 됩니다!! smartstore.naver.com
아래에서 report_desc의 타입이 JSON 이에요. JSON 데이터 중 a가 1인걸 뽑으려면 아래와 같이 하면 돼요. 위 데이터는 모두가 되겠죠. SELECT * FROM `reports` WHERE JSON_EXTRACT(report_desc, '$.a') = 1 결과가 나왔네요. p.s. 검색하지 않을 JSON 데이터라면 그냥 VARCHAR를 쓰는게 나아요. 응용 코드 [ {"tm": "10:00", "txt": "AAA"}, {"tm": "12:00", "txt": "BBB"}, {"tm": "15:00", "txt": "CCC"} ] SELECT JSON_EXTRACT(data, '$[1].tm') FROM `report_apps` WHERE pk=1 SELECT JSON_LENGTH(JSO..
코틀린은 JVM 언어이므로, 코틀린 컴파일러는 자바 바이트 코드(Java bytecode)를 만들어낼 것이다. 이로 인해 코틀린 코드에서 자바 코드를 호출할 수 있을 뿐만 아니라, 그 역 또한 가능하다. Mac에 코틀린 설치 $ brew update $ brew install kotlin HelloWorld.kt 작성 fun main() { println("Hello World!"); } 실행 파일 생성 $ kotlinc HelloWorld.kt -include-runtime -d HelloWorld.jar 실행 $ java -jar HelloWorld.jar 영어, 중국어 공부중이신가요? 홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요! 한GLO 미네르바에듀 : 네이버쇼핑 스마트스토어 한글로 영어가 ..
https://www.speedtest.net/ Speedtest by Ookla - The Global Broadband Speed Test Test your Internet connection bandwidth to locations around the world with this interactive broadband speed test from Ookla www.speedtest.net Go 버튼을 누르면? 끝. 영어, 중국어 공부중이신가요? 홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요! 한GLO 미네르바에듀 : 네이버쇼핑 스마트스토어 한글로 영어가 된다?! 한글로[한GLO]는 영어 중국어 일어 러시아어 스페인어가 됩니다!! smartstore.naver.com
불꽃을 좋아해요. (열정, PHP는 코드이그나이터) 간단한 플러터 게임 엔진이에요. 작년에 유사한 엔진인 SpriteWidget으로 간단한 테스트를 한 적도 있어요. Flame에 관심이 생긴건 꾸준히 업데이트를 하고 있다는거에요. 그냥 헬로 월드를 찍어보죠. 프로젝트 생성. $ flutter create FlameTest pubspec.yaml 에 flame과 random_color 추가. dependencies: flame: ^0.25.0 random_color: ^1.0.5 $ flutter pub get main.dart 코드. (화면을 탭할 때마다 색이 바껴요) import 'package:flame/util.dart'; import 'package:flutter/services.dart'; im..
저는 Mac을 써요. 다운로드하고 설치할께요. https://golang.org/dl/ Downloads - The Go Programming Language Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases golang.org 콘솔에서 go 하니까 나오네요. 바탕화면에 main.go 파일을 만들었어요..
영어, 중국어 공부중이신가요? 홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요! 한GLO 미네르바에듀 : 네이버쇼핑 스마트스토어 한글로 영어가 된다?! 한글로[한GLO]는 영어 중국어 일어 러시아어 스페인어가 됩니다!! smartstore.naver.com 프로그램마다 웹캠을 쓰게 할지 말지 정할 수 있어요. 시스템 환경 설정 > 보안 및 개인 정보 보호 > 개인 정보 보호 체크 박스를 해제하면 돼요.
영어, 중국어 공부중이신가요? 홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요! 한GLO 미네르바에듀 : 네이버쇼핑 스마트스토어 한글로 영어가 된다?! 한글로[한GLO]는 영어 중국어 일어 러시아어 스페인어가 됩니다!! smartstore.naver.com $_POST 로는 읽을 수가 없어요. \x22id\x22:ABCD 파라미터가 이런식으로 들어오거든요. 아래와 같이 읽으면 돼요. $inputJSON = file_get_contents("php://input"); $input = json_decode($inputJSON, true); $id = $input['id'];