Array not initializing because of some values

83 Views Asked by At

I have following array.

$t= array('Super User','Admin_Sub','Catalog Management User','Order Management User','CustomerCare_Head','CustomerCare_Sub',' Finance Management User',
                'Logistic Management User','Logistic_Sub','SEO_Head','SEO_Sub','Marketing Management User','Marketing_Sub','Cat_Man','Design','Business Development','Reviews',
                'Catalot Management Primary User','Catalot Management Secondary User');

If I print array it showing null.

$t= array('Super User','Admin_Sub','Catalog Management User','Order Management User','CustomerCare_Head','CustomerCare_Sub',' Finance Management User',
                'Logistic Management User','Logistic_Sub','SEO_Head','SEO_Sub','Marketing Management User','Marketing_Sub','Cat_Man','Design','Reviews');

if I print this array it print fine.

I have removed('Business Development', 'Catalot Management Primary User','Catalot Management Secondary User) from second array. This three values preventing an array to print. I tried every possible way but no success.

Thanx in Advance :)

P.S: I forgot to mention it doesn't printing in Excel. I am importing this to Excel file as a drop-down list

 Excel::create('Users', function ($excel) use ($rs, $role_final) {
            $excel->sheet('Users', function ($sheet) use ($rs, $role_final) {
                if (count($rs['attachData']) > 0) {
                    $arr_csv = array_merge($this->arr_user, $rs['attachData']);
                } else {
                    $arr_csv = $this->arr_user;
                }
                $t= array('Super User','Admin_Sub','Catalog Management User','Order Management User','CustomerCare_Head','CustomerCare_Sub',' Finance Management User',
                'Logistic Management User','Logistic_Sub','SEO_Head','SEO_Sub','Marketing Management User','Marketing_Sub','Cat_Man','Design','Business Development','Reviews',
                'Catalot Management Primary User','Catalot Management Secondary User');


                $user_role = implode(',',$t);
                $user_roles[0] = $user_role;
                $sheet->rows(array($arr_csv));
                $this->getDropDownListWithValidation($sheet, 'E', implode('","', $user_roles));
                $sheet->setFontSize(10);
                $sheet->row(1, function ($row) {
                    $row->setFontWeight('bold');
                });

                $sheet->freezeFirstRow();

            });

        })
            ->export('xls');



 protected function getDropDownListWithValidation($sheet, $cell, $items)
{
   $objValidation = $sheet->getCell($cell . $i)->getDataValidation();
        $objValidation->setType(\PHPExcel_Cell_DataValidation::TYPE_LIST);
        $objValidation->setErrorStyle(\PHPExcel_Cell_DataValidation::STYLE_INFORMATION);
        $objValidation->setAllowBlank(false);
        $objValidation->setShowInputMessage(true);
        $objValidation->setShowErrorMessage(true);
        $objValidation->setShowDropDown(true);
        $objValidation->setErrorTitle('Input error');
        $objValidation->setError('Value is not in list.');
        $objValidation->setPromptTitle('Pick from list');
        $objValidation->setPrompt('Please pick a value from the drop-down list.');
        $objValidation->setFormula1('"' . $items . '"');
    }
    return $objValidation;
}
1

There are 1 best solutions below

2
On

Try below code

      $t= array('Super User','Admin_Sub','Catalog Management User',
      'Order Management User','CustomerCare_Head',
      'CustomerCare_Sub',' Finance Management User',
      'Logistic Management User',
      'Logistic_Sub','SEO_Head','SEO_Sub',
      'Marketing Management User',
      'Marketing_Sub','Cat_Man','Design','Reviews');



   $t1= array('Super User','Admin_Sub','Catalog Management User','Order Management User','CustomerCare_Head','CustomerCare_Sub',' Finance Management User',
            'Logistic Management User','Logistic_Sub','SEO_Head','SEO_Sub','Marketing Management User','Marketing_Sub','Cat_Man','Design','Business Development','Reviews',
            'Catalot Management Primary User','Catalot Management Secondary User');
 echo "<pre>";
 print_r($t);
 print_r($t1);