PHP extract()

1 개요[ | ]

PHP extract()
  • 배열에서 현재 심볼 테이블로 변수를 들여오는 PHP 함수
$size = "large";
$var_array = ["color" => "blue",
              "size"  => "medium",
              "shape" => "sphere"];
extract($var_array, EXTR_PREFIX_SAME, "wddx");

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

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}