w

 

http://php.net/manual/en/function.extract.php

<?php

/* Suppose that $var_array is an array returned from
   wddx_deserialize */

$size = "large";
$var_array = array("color" => "blue",
    "size" => "medium",
    "shape" => "sphere");
extract($var_array, EXTR_PREFIX_SAME, "wddx");

echo "$color, $size, $shape, $wddx_size\n";

 

相关文章:

  • 2022-12-23
  • 2021-10-07
  • 2022-02-21
  • 2021-12-14
  • 2021-06-06
  • 2021-05-24
  • 2022-01-20
  • 2021-10-28
猜你喜欢
  • 2022-12-23
  • 2021-05-28
  • 2022-02-17
  • 2021-07-18
  • 2021-09-04
相关资源
相似解决方案