Language

PHP에서 웹 크롤러 만들기

PHP에서 웹 크롤러 만들기 $ch=curl_init(); //initialize curl curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser. curl_setopt($ch, CURLOPT_URL, “http://google.com/”); $data …

PHP에서 웹 크롤러 만들기 Read More »

자바스크립트에서 브라우저 속성 지원 여부 확인하기

자바스크립트에서 브라우저 속성 지원 여부 확인하기 DOM Attribute placeholder attribute is supported if('placeholder' in document.createElement('input')){ … } download attribute is supported if(typeof document.createElement('a').download != "undefined"){ … } img srcset attribute …

자바스크립트에서 브라우저 속성 지원 여부 확인하기 Read More »

자주 사용하는 A 태그 속성

자주 사용하는 A 태그 속성 tel: <a href="TEL:051-744-26333">051-744-26333</a> <a href="tel:+541147776464">+54 11 4777 6464</a> mailto: <a href="matilto:email@example.com">email@example.com</a>

Scroll to Top