위

넘겨온 변수의 이름을 추출하는 함수..

· 2009-07-21 (화) 09:26:20 · 2671 · 1

값이아니라 변수명입니다~

 Here s a function to get the name of a given variable.  Explanation and examples below.

   function vname(&$var, $scope=false, $prefix='unique', $suffix='value')
   {
     if($scope) $vals = $scope;
     else      $vals = $GLOBALS;
     $old = $var;
     $var = $new = $prefix.rand().$suffix;
     $vname = FALSE;
     foreach($vals as $key => $val) {
       if($val === $new) $vname = $key;
     }
     $var = $old;
     return $vname;
   }


 Explanation:

 The problem with figuring out what value is what key in that variables scope is that several variables might have the same value.  To remedy this, the variable is passed by reference and its value is then modified to a random value to make sure there will be a unique match.  Then we loop through the scope the variable is contained in and when there is a match of our modified value, we can grab the correct key.

 Examples:

 1.  Use of a variable contained in the global scope (default):
 < ?php
   $my_global_variable = "My global string.";
   echo vname($my_global_variable); // Outputs:  my_global_variable
 ? >

 2.  Use of a local variable:
 < ?php
   function my_local_func()
   {
     $my_local_variable = "My local string.";
     return vname($my_local_variable, get_defined_vars());
   }
   echo my_local_func(); // Outputs: my_local_variable
 ? >

 3.  Use of an object property:
 < ?php
   class myclass
   {
     public function __constructor()
     {
       $this->my_object_property = "My object property  string.";
     }
   }
   $obj = new myclass;
   echo vname($obj->my_object_property, $obj); // Outputs: my_object_property
 ? >
 =>2줄로
 < ?php
 function var_name(&$var, $scope=0)
 {
     $old = $var;
     if (($key = array_search($var = 'unique'.rand().'value', !$scope ? $GLOBALS : $scope)) && $var = $old) return $key;
 }
 ? >

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|

댓글 1개

찾다찾다 여기서 찾게 되었네요. 정말 감사합니다.
그러고보니 딱 일년전 글이군요 ㅎ
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
10-05-31 조회 2,885
10-04-17 조회 4,684
10-03-23 조회 5,834
10-02-26 조회 3,354
10-02-23 조회 3,318
10-02-11 조회 3,939
10-02-09 조회 3,002
10-01-26 조회 3,454
10-01-23 조회 6,781
10-01-19 조회 3,493
10-01-13 조회 3,697
09-12-06 조회 4,604
09-11-24 조회 4,175
09-11-19 조회 3,053
09-11-11 조회 3,651
09-08-30 조회 3,129
09-08-12 조회 3,131
09-07-21 조회 3,307
09-07-19 조회 3,189
09-07-11 조회 3,104
09-06-15 조회 2,881
09-05-29 조회 3,066
09-05-28 조회 3,494
09-05-05 조회 3,346
09-04-07 조회 3,565
09-02-23 조회 4,360
09-02-17 조회 3,101
09-02-17 조회 2,481
09-02-09 조회 2,584
09-01-23 조회 3,384
09-01-17 조회 4,222
09-01-08 조회 3,166
08-11-07 조회 4,428
08-11-01 조회 4,915
08-10-30 조회 3,509
08-10-16 조회 3,429
08-10-02 조회 2,567
08-09-22 조회 3,826
08-09-22 조회 2,887
08-09-20 조회 5,384
08-09-20 조회 4,441
08-09-20 조회 3,516
08-09-20 조회 2,890
08-09-20 조회 3,085
08-09-20 조회 4,070
08-09-20 조회 3,562
08-09-20 조회 3,145
08-09-18 조회 3,382
08-09-06 조회 2,990
08-09-06 조회 2,741
08-09-05 조회 3,394
08-09-05 조회 5,602
08-09-03 조회 4,407
08-09-03 조회 2,658
08-07-31 조회 3,146
08-07-18 조회 3,752
08-06-19 조회 3,095
08-06-15 조회 3,083
08-06-14 조회 3,539
08-05-23 조회 2,776
08-05-13 조회 2,683
08-04-22 조회 4,352
08-04-22 조회 5,056
08-04-22 조회 6,797
08-04-17 조회 2,977
08-04-17 조회 3,547
08-04-17 조회 3,656
08-04-17 조회 5,898
08-04-17 조회 3,099
08-04-17 조회 3,426
08-04-06 조회 3,516
08-04-05 조회 3,099
08-04-04 조회 7,154
08-04-04 조회 4,444
08-04-04 조회 3,797
08-04-04 조회 3,972
08-04-04 조회 2,850
08-04-04 조회 2,635
08-04-04 조회 2,684
08-04-04 조회 2,875
08-04-04 조회 2,630
08-04-04 조회 2,598
08-04-04 조회 4,112
08-04-03 조회 2,632
08-04-03 조회 3,844
08-04-02 조회 3,058
08-04-02 조회 2,809
08-03-25 조회 3,666
08-03-11 조회 3,430
08-03-11 조회 2,941
08-03-11 조회 2,899
08-03-11 조회 2,697
08-03-11 조회 2,472
08-03-11 조회 2,277
08-03-11 조회 2,333
08-03-07 조회 2,866
08-03-05 조회 2,609
08-02-27 조회 2,841
08-02-21 조회 2,724
08-02-21 조회 3,297