Saya memiliki bidang formulir HTML yang $_POST["url"]
memiliki beberapa string URL sebagai nilainya. Nilai contoh adalah:
https://example.com/test/1234?email=xyz@test.com https://example.com/test/1234?basic=2&email=xyz2@test.com https://example.com/test/1234?email=xyz3@test.com https://example.com/test/1234?email=xyz4@test.com&testin=123 https://example.com/test/the-page-here/1234?someurl=key&email=xyz5@test.com
dll.
Bagaimana saya bisa mendapatkan hanya email
parameter dari URL / nilai ini?
Harap perhatikan bahwa saya tidak mendapatkan string ini dari bilah alamat browser.
/(email=\w\@\w\.\w)/
or more advanced matching techniques. Just giving you the idea. See preg_match
function: php.net/manual/en/function.preg-match.php