“PHP HTTP Build -Abfrage” Code-Antworten

PHP HTTP Build -Abfrage

$data = [
    'foo' => 'bar',
    'baz' => 'boom',
    'cow' => 'milk',
    'php' => 'hypertext processor'
];

echo http_build_query($data); // output: foo=bar&baz=boom&cow=milk&php=hypertext+processor

echo http_build_query($data, '', '&'); // output: foo=bar&baz=boom&cow=milk&php=hypertext+processor
Web Surfer

PHP http_build_query


<?php
$data = array(
    'foo' => 'bar',
    'baz' => 'boom',
    'cow' => 'milk',
    'php' => 'hypertext processor'
);

echo http_build_query($data) . "\n";
echo http_build_query($data, '', '&');

?>

Alberto Peripolli

Ähnliche Antworten wie “PHP HTTP Build -Abfrage”

Fragen ähnlich wie “PHP HTTP Build -Abfrage”

Weitere verwandte Antworten zu “PHP HTTP Build -Abfrage” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen