curl_escape — 주어진 문자열을 URL 인코딩합니다.

· 2016-12-23 (금) 13:17:58 · 3657

curl_escape — 주어진 문자열을 URL 인코딩합니다.

 

설명 ¶

 

string curl_escape ( resource $ch , string $str )

이 함수 URL은»RFC 3986에 따라 주어진 문자열을 인코딩합니다.

 

인수 ¶

 

ch

curl_init()가 반환한 cURL 핸들입니다.

 

str

인코딩 할 문자열입니다

 

반환값 ¶

Returns escaped string실패 시 FALSE를 반환합니다.

 

예제 ¶

 

 

<?php

// Create a curl handle

$ch = curl_init();

 

// Escape a string used as a GET parameter

$location = curl_escape($ch, 'Hofbräuhaus / München');

// Result: Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

 

// Compose an URL with the escaped string

$url = "http://example.com/add_location.php?location={$location}";

// Result: http://example.com/add_location.php?location=Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

 

// Send HTTP request and close the handle

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_exec($ch);

curl_close($ch);

?>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 17-01-03 조회 3,694
PHP 17-01-03 조회 2,822
PHP 17-01-03 조회 2,827
PHP 17-01-03 조회 2,817
PHP 17-01-02 조회 3,197
PHP 17-01-02 조회 2,745
PHP 17-01-02 조회 2,464
PHP 17-01-02 조회 5,681
PHP 17-01-01 조회 2,432
PHP 17-01-01 조회 2,566
PHP 17-01-01 조회 2,550
기타 16-12-31 조회 3,383
PHP 16-12-30 조회 2,710
PHP 16-12-30 조회 2,917
PHP 16-12-30 조회 3,316
PHP 16-12-29 조회 3,022
PHP 16-12-29 조회 3,514
PHP 16-12-29 조회 2,954
PHP 16-12-28 조회 2,589
PHP 16-12-28 조회 2,933
PHP 16-12-28 조회 3,031
PHP 16-12-27 조회 5,548
PHP 16-12-27 조회 2,997
PHP 16-12-27 조회 2,608
PHP 16-12-26 조회 3,226
PHP 16-12-26 조회 2,571
PHP 16-12-26 조회 2,647
PHP 16-12-23 조회 3,988
PHP 16-12-23 조회 2,759
PHP 16-12-23 조회 3,658