如何在php中的数组元素中添加变量?

时间:2015-07-14 12:26:20

标签: php arrays

代码:

public $img_config = array('thum_img' => array(
        'image_ratio_crop' => true,
        'image_resize' => true,
        'image_x' => 175,
        'image_y' => 240
    ),
    'small_img' => array(
        'image_ratio_crop' => true,
        'image_resize' => true,
        'image_x' => 110,
        'image_y' => 35
    ),
    'parent_dir' => 'productImages',
    'target_path' => array(
        'thum_img' => WWW_ROOT . 'productImages' . DS . 'thum' . DS,
        'small_img' => WWW_ROOT . 'productImages' . DS . 'small' . DS
    )
);

这不起作用。 WWW_ROOT . 'productImages' . DS . 'thum' . DS, and WWW_ROOT . 'productImages' . DS . 'small' . DS是错误的原因。我做错了什么?

0 个答案:

没有答案