COMING SOON 🚀

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

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);

?>

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
PHP 9년 전 조회 2,727
PHP 9년 전 조회 3,215
PHP 9년 전 조회 2,616
PHP 9년 전 조회 2,260
PHP 9년 전 조회 2,643
PHP 9년 전 조회 2,711
PHP 9년 전 조회 5,200
PHP 9년 전 조회 2,704
PHP 9년 전 조회 2,341
PHP 9년 전 조회 2,882
PHP 9년 전 조회 2,260
PHP 9년 전 조회 2,351
PHP 9년 전 조회 3,673
PHP 9년 전 조회 2,446
PHP 9년 전 조회 3,373
PHP 9년 전 조회 2,246
PHP 9년 전 조회 2,627
PHP 9년 전 조회 2,715
PHP 9년 전 조회 3,655
PHP 9년 전 조회 3,549
PHP 9년 전 조회 4,735
PHP 9년 전 조회 2,719
PHP 9년 전 조회 2,942
PHP 9년 전 조회 2,762
PHP 9년 전 조회 2,283
PHP 9년 전 조회 3,627
PHP 9년 전 조회 3,205
MySQL 9년 전 조회 4,076
웹서버 9년 전 조회 2,738
기타 9년 전 조회 2,974