當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP rawurlencode()用法及代碼示例


rawurlencode()函數是PHP中的一個內置函數,用於根據RFC(統一資源標識符)3986對URL(統一資源定位符)進行編碼。

用法:

string rawurlencode( $str )

參數:此函數接受強製的單個參數$str。它用於存儲要編碼的URL。


返回值:此函數返回一個字符串,其中包含-_。〜符號以外的所有非字母數字字符。符號或空格字符用百分號(%)替換,後跟兩個十六進製數字。

以下示例程序旨在說明PHP中的rawurlencode()函數。

程序1:

<?php 
echo '<a href="www.geeksforgeeks.org', 
  rawurlencode('A computer science portal for geek'), '">'; 
?>
輸出:
<a href="www.geeksforgeeks.orgA%20computer%20science%20portal%20for%20geek">

程序2:

<?php 
  
// Store the URL string 
$str = 'A computer science portal for geek'; 
  
// Encode the URL string and print it. 
echo '<a href="www.geeksforgeeks.org', rawurlencode($str), '">'; 
?>
輸出:
<a href="www.geeksforgeeks.orgA%20computer%20science%20portal%20for%20geek">

相關文章:

參考: http://php.net/manual/en/function.rawurlencode.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | rawurlencode() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。