PHP's http_build_query in JavaScript
How to use
You you can install via yarn add locutus
and
require this function via const http_build_query = require('locutus/php/url/http_build_query')
.
It is important to use a bundler that supports tree-shaking so that you only ship the functions that you actually use to your browser, instead of all of Locutus, which is massive. Examples are: Parcel, webpack, or rollup.js. For server-side use this is typically less of a concern.
Examples
Please note that these examples are distilled from test cases that automatically verify our functions still work correctly. This could explain some quirky ones.
# | code | expected result |
---|---|---|
1 | http_build_query({foo: 'bar', php: 'hypertext processor', baz: 'boom', cow: 'milk'}, '', '&') | 'foo=bar&php=hypertext+processor&baz=boom&cow=milk' |
2 | http_build_query({'php': 'hypertext processor', 0: 'foo', 1: 'bar', 2: 'baz', 3: 'boom', 'cow': 'milk'}, 'myvar_') | 'myvar_0=foo&myvar_1=bar&myvar_2=baz&myvar_3=boom&php=hypertext+processor&cow=milk' |
3 | http_build_query({foo: 'bar', php: 'hypertext processor', baz: 'boom', cow: 'milk'}, '', '&', 'PHP_QUERY_RFC3986') | 'foo=bar&php=hypertext%20processor&baz=boom&cow=milk' |
Notes
If the value is null, key and value are skipped in the http_build_query of PHP while in locutus they are not.
Here’s what our current JavaScript equivalent to PHP's http_build_query looks like.
module.exports = function http_build_query(formdata, numericPrefix, argSeparator, encType) { |
A community effort
Not unlike Wikipedia, Locutus is an ongoing community effort. Our philosophy follows
The McDonald’s Theory.
This means that we assimilate first iterations with imperfections,
hoping for others to take issue with-and improve them.
This unorthodox approach has worked very well to foster fun and fruitful collaboration,
but please be reminded to use our creations at your own risk.
THE SOFTWARE IS PROVIDED "AS IS"
has never been more true than for Locutus.
Now go and: [ View on GitHub | Edit on GitHub | View Raw ]
Star