Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 520

Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 535

Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 542

Deprecated: Assigning the return value of new by reference is deprecated in /home/zona003/public_html/wp-settings.php on line 578

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/zona003/public_html/wp-settings.php on line 18

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/zona003/public_html/wp-settings.php:520) in /home/zona003/public_html/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 121

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/zona003/public_html/wp-settings.php:520) in /home/zona003/public_html/wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php on line 121
Conversion de un Array en QueryString | DamageBlog

Conversion de un Array en QueryString  707 views

January 16 2008 Categorized Under: PHP y MySQL, Recursos No Commented

Aveces se me ha presentado el problema de quere convertir o armar QueryStrings desde variables, arreglos o valores desde una base de datos, la mejor forma de hacer esto es meter los valores en un arreglo y convertir el mismo en QueryString con la funcion http_build_query(). ejemplo:

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

echo http_build_query($data); // foo=bar&baz=boom&cow=milk&php=hypertext+processor
echo http_build_query($data, ”, ‘&’); // foo=bar&baz=boom&cow=milk&php=hypertext+processor

?>

saludos..

Popularity: 11% [?]

Otros Posts Interesantes

comments

Leave a Reply


Warning: Please contact support about failure in /home/zona003/public_html/wp-content/themes/LenoMag/footer.php on line 1