php - Is it possible to know all potential parameters of url? -


i have api link poor documentation. let's say:

http://link.com/?<parameter>=### 

is possible know potential parameters of url link without contacting admin of site?

with array_keys(), can return keys of array. know $_get array have query string keys , values. below command can printing keys passed page:

print_r(array_keys($_get)); 

instead of printing array, can use want.


Comments

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -