Error message about PHPWarning: implode (): Invalidargumentspassedin

Source: Internet
Author: User
Error message about PHPWarning: implode (): Invalidargumentspassedin
$ Gets = ""; // The Following ($ vv ["get"] is similar to array ("del" => "0", "dept" => "2 ") such an array foreach ($ vv ["get"] as $ g => $ gv) {$ gets [] = $ g. "= ". $ gv ;}$ gets = implode ("&", $ gets); // The implode function returns an error.


PHP warning: implode (): Invalid parameter transfer

How can this problem be solved ???


Reply to discussion (solution)

What is var_dump ($ gets) before that sentence?

$vv["get"] = array("del"=>"0","dept"=>"2");$gets = "";foreach($vv["get"] as $g => $gv){  $gets[] = $g."=".$gv;}     $gets = implode("&",$gets); echo $gets;
Del = 0 & dept = 2
No problem

But it is best to use the http_build_query function.
$ Gets = http_build_query ($ vv ['get']);

What is var_dump ($ gets) before that sentence?



Still the same error...

Should explode be used to convert it into an array? Implode is an array to a string ~~

Incorrect

What is var_dump ($ gets) before that sentence?



The PHP Fatal error: Can't use function return value in write context in is obtained.

Paste all your code

Paste all your code



@ Xuzuning: Thanks for the above method.

Your $ vv ["get"] variable may be faulty.

Your $ vv ["get"] variable may be faulty.



Sorry, I cannot change the original sentence.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.