Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/tests/class/test/util/Test_Utils.php

    r22567 r22796  
    2929 * @version $Id$ 
    3030 */ 
    31 class Test_Utils 
    32 { 
     31class Test_Utils { 
    3332 
    3433  /** 
     
    4140   * @return 指定したキーのみを持つ連想配列 
    4241   */ 
    43   public static function mapArray($input_array, $map_keys) 
    44   { 
     42  public static function mapArray($input_array, $map_keys) { 
    4543    $output_array = array(); 
    4644    foreach ($map_keys as $index => $map_key) { 
     
    6058   * @return 指定のキーだけを抜き出した配列 
    6159   */ 
    62   public static function mapCols($input_array, $key) 
    63   { 
     60  public static function mapCols($input_array, $key) { 
    6461    $output_array = array(); 
    6562    foreach ($input_array as $data) { 
     
    7875   * @param new_array 追加要素を持つ配列 
    7976   */ 
    80   public static function array_append(&$orig_array, $new_array) 
    81   { 
     77  public static function array_append(&$orig_array, $new_array) { 
    8278    foreach ($new_array as $element) { 
    8379      $orig_array[] = $element; 
Note: See TracChangeset for help on using the changeset viewer.