urlencode()函數是PHP中的內置函數,用於對URL進行編碼。該函數返回一個字符串,該字符串包含除-_之外的所有非字母數字字符。並用百分號(%)替換,後跟兩個十六進製數字和空格,編碼為加號(+)。
用法:
string urldecode( $input )
參數:此函數接受單個參數$input,該參數用於保存要編碼的url。
返回值:成功時此函數返回一個編碼的字符串。
以下示例程序旨在說明PHP中的urlencode()函數:
程序1:
<?php
// PHP program to illustrate urlencode function
echo urlencode("https://geeksforgeeks.org/") . "\n";
?>
輸出:
https%3A%2F%2Fgeeksforgeeks.org%2F
程序2:
<?php
// PHP program to illustrate urlencode function
echo urlencode("https://ide.geeksforgeeks.org/") . "\n";
echo urlencode("https://contribute.geeksforgeeks.org/") . "\n";
echo urlencode("https://practice.geeksforgeeks.org/") . "\n";
echo urlencode("https://geeksforgeeks.org/") . "\n";
?>
輸出:
https%3A%2F%2Fide.geeksforgeeks.org%2F https%3A%2F%2Fcontribute.geeksforgeeks.org%2F https%3A%2F%2Fpractice.geeksforgeeks.org%2F https%3A%2F%2Fgeeksforgeeks.org%2F
參考: http://php.net/manual/en/function.urlencode.php
相關用法
- d3.js d3.set.has()用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js abs()用法及代碼示例
- p5.js sq()用法及代碼示例
- PHP pow( )用法及代碼示例
- CSS var()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js value()用法及代碼示例
- PHP pi( )用法及代碼示例
- p5.js int()用法及代碼示例
- d3.js d3.map.get()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | urlencode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。