Giter Club home page Giter Club logo

Comments (1)

weierophinney avatar weierophinney commented on May 24, 2024 1

Let's start with:

Same thing happens when applying parse_str($_SERVER['QUERY_STRING']).

and:

  • `$client->request('GET', $myServiceUrl . '?' . http_build_query($aggregates))

We'll start with a statement: query string arguments are presented as a string; hence the verbiage "query string". This is defined by the IETF specifications.

Now, when it comes to PHP, http_build_query() creates a string representation of the arguments passed to it. parse_str() parses the string pass to it, has zero idea what the types of the arguments are, and, as such, it resolves all of the values as strings.

This is true of the behavior of $_GET as well. If you were to build a script with the following:

<?php
http_response_code(200);
header('Content-Type: text/plain');

echo var_export($_GET, true), "\n";

and then pass it a URI with the query string "?aggregates%5Bnumber%5D=1", you'd get:

array (
  'aggregates' =>
  array (
    'number' => '1',
  ),
)

Essentially, this is something we cannot change.

It's up to the developer of the application to decide what the intended types are in this scenario, validate them, and, if necessary, cast them.

from laminas-diactoros.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.