Problem
Query strings are parsed in Superglobals, but link generation and routers often need urlencode / parse_url.
Goal
Add minimal URL helpers to ext/standard/.
Tasks
Acceptance criteria
echo '<a href="?name=' . urlencode($name) . '">'; compiles and runs.
Problem
Query strings are parsed in
Superglobals, but link generation and routers often needurlencode/parse_url.Goal
Add minimal URL helpers to
ext/standard/.Tasks
REQUEST_URIcomponentsexamples/003-MiniWebApprouterAcceptance criteria
echo '<a href="?name=' . urlencode($name) . '">';compiles and runs.