Questions tagged «url-parsing»


13
如何从URL字符串获取参数?
我有一个HTML表单字段$_POST["url"],其中包含一些URL字符串作为值。示例值包括: 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 等等 如何email仅从这些URL /值中获取参数? 请注意,我没有从浏览器地址栏中获取这些字符串。
197 php  url-parsing 

22
更改URL参数
我有这个网址: site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc 我需要的是能够将“行”的url参数值更改为我指定的值,比方说10。如果“行”不存在,则需要将其添加到url的末尾并添加我已经指定的值(10)。

4
在JavaScript中创建新的Location对象
是否可以在javascript中创建新的Location对象?我有一个URL作为字符串,我想利用javascript已经提供的功能来访问它的不同部分。 这是我正在谈论的示例(我知道这不起作用): var url = new window.location("http://www.example.com/some/path?name=value#anchor"); var protocol = url.protocol; var hash = url.hash; // etc etc 这样的事情有可能发生吗,或者我本质上必须自己创建此对象?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.