Tagged articles
10 articles
Page 1 of 1
php Courses
php Courses
Oct 23, 2024 · Backend Development

Using PHP rawurlencode() to Encode URLs and Query Parameters

This article explains how PHP's rawurlencode() function encodes special characters in URLs and query strings, demonstrates its syntax with code examples, and shows how to safely construct encoded URLs for web applications.

Backendphp-functionsrawurlencode
0 likes · 4 min read
Using PHP rawurlencode() to Encode URLs and Query Parameters
php Courses
php Courses
Jul 11, 2024 · Backend Development

Using PHP's urldecode() Function: Concepts, Syntax, and Examples

This article explains PHP's urldecode() function, covering URL encoding basics, the function's prototype, usage examples with code demonstrating encoding with urlencode() and decoding back to the original string, and notes on limitations and the alternative rawurldecode() for non‑ASCII characters.

BackendPHPphp-functions
0 likes · 3 min read
Using PHP's urldecode() Function: Concepts, Syntax, and Examples
php Courses
php Courses
Jun 6, 2024 · Backend Development

Using PHP urlencode to Encode URLs with Special and Non-ASCII Characters

This article explains the importance of URL encoding for transmitting special and non-ASCII characters, demonstrates how to use PHP’s urlencode (and rawurlencode) function with example code for English and Chinese strings, and discusses practical considerations such as handling spaces in GET requests.

Backendurl-encodingweb-development
0 likes · 3 min read
Using PHP urlencode to Encode URLs with Special and Non-ASCII Characters
php Courses
php Courses
Jan 8, 2024 · Backend Development

Using PHP urlencode to Encode URLs and Non-ASCII Characters

This article explains how PHP's urlencode function encodes URLs containing special or non‑ASCII characters, provides example code for both English and Chinese strings, and discusses handling spaces with rawurlencode for more precise encoding.

Backendencodingurl-encoding
0 likes · 4 min read
Using PHP urlencode to Encode URLs and Non-ASCII Characters
Laravel Tech Community
Laravel Tech Community
Jul 6, 2020 · Backend Development

PHP rawurlencode Function: Description, Parameters, and Examples

The article explains PHP's rawurlencode() function, detailing its RFC 3986‑based URL encoding behavior, signature, parameter description, return value, and provides two practical code examples demonstrating how to encode special characters in FTP and HTTP URLs.

Backendexamplerawurlencode
0 likes · 2 min read
PHP rawurlencode Function: Description, Parameters, and Examples