[lang-ref] ( decode_uri_for_path ) ( php )

<?php
public function testDecodeUriForPath(): void
{
	// rawurldecode
	$s = rawurldecode('a%20b%2Fc');
	$this->assertSame('a b/c', $s);
}