디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

PHP 쪼~~꼼만 봐주세요잉 ㅠㅠ

냥효(99.33) 2011.06.08 15:39:51
조회 62 추천 0 댓글 0

안뇽하세요 디씨의 날고기는 프로그래머 님들..

저는 사실 디자인일을 하구있는 한 처자 이온데 ㅠ
php 오픈소스 프로그램을 썻거든요
근데 접때 누가 수정해줘서 수정해준체로 좀 썻엇어요 근데 이 프로그램이 버전 업뎃을 해서여 ㅠ
업뎃을 해야하는데, 수정한 부분을 계속 쓰고 싶거든요.. 수정이라고 할까 아무튼 기능을 추가  했다고 봐야져..
근데 지금 어찌 할 방도가 없어서..주변에 아는 남정네들을 다뒤져도 어째 웹프로그램 아는사람 하나가 없는지 ㅜㅜ
암튼 도와주시면 성은이 망극 ㅜㅜ

일단 요부분이 본래 수정(추가)전의 코드구요......
===============================================================================================================
foreach ($results as $result) {
    if ($result[\'image\'] && file_exists(DIR_IMAGE . $result[\'image\'])) {
     $this->data[\'product_images\'][] = array(
      \'preview\' => $this->model_tool_image->resize($result[\'image\'], 100, 100),
      \'file\'    => $result[\'image\']
     );
    } else {
     $this->data[\'product_images\'][] = array(
      \'preview\' => $this->model_tool_image->resize(\'no_image.jpg\', 100, 100),
      \'file\'    => $result[\'image\']
     );
    }
   }
  }

===============================================================================================================


요게 예전에 누가 기능 추가 해준 코드에요..그니까 저 위의 코드에 굵은 글씨부분을 추가한거..

foreach ($results as $result) {
   
    if ($result[\'image\'] && file_exists(DIR_IMAGE . $result[\'image\'])) {
     $this->data[\'product_images\'][] = array(
      \'preview\' => $this->model_tool_image->resize($result[\'image\'], 100, 100),
      \'file\'    => $result[\'image\'],       \'product_color_id\'    => $result[\'product_color_id\']     

     );
    } else {
     $this->data[\'product_images\'][] = array(
      \'preview\' => $this->model_tool_image->resize(\'no_image.jpg\', 100, 100),
      \'file\'    => $result[\'image\'],       \'product_color_id\'    => $result[\'product_color_id\'] 
     );     }    }   }   $this->data[\'product_colors\'] = array();   if (isset($product_info)) {    $results = $this->model_catalog_product->getProductColors($this->request->get[\'product_id\']);      foreach ($results as $result) {         if ($result[\'color\'] && file_exists(DIR_IMAGE . $result[\'color\'])) {      $this->data[\'product_colors\'][] = array(       \'preview\' => $this->model_tool_image->resize($result[\'color\'], 30, 30),       \'file\'    => $result[\'color\'],       \'product_color_id\'    => $result[\'product_color_id\'],       \'name\'    => $result[\'name\']      );     } else {      $this->data[\'product_colors\'][] = array(       \'preview\' => $this->model_tool_image->resize(\'no_image.jpg\', 30, 30),       \'file\'    => $result[\'color\'],       \'product_color_id\'    => 0,       \'name\'    => \'\'           );
    }
   }
  }
  $this->data[\'product_sizes\'] = array();   if (isset($product_info)) {    $results = $this->model_catalog_product->getProductSizes($this->request->get[\'product_id\']);      foreach ($results as $result) {      $this->data[\'product_sizes\'][] = $result[\'size\'];    }

  }


===============================================================================================================

그리고 이건 이번에 버전업된 소스인데요...
\'\'file\'    => $result[\'image\'] 요부분이 없고 대신   $image = $this->model_tool_image->resize($result[\'image\'], 40, 40);

이렇게 있는데..키와 값의 지정(?) 방식을 달리 표현 한건가 싶은데..위에서 추가한 코드 부분을
밑의 업뎃된 버전의 코드에도 적용해서 사용하려면 우찌해야 하나여? ㅠㅠ 좀 도와주세요 ㅠㅠ 이쁜 배우자 만나실거에용 ㅠㅠ

foreach ($results as $result) {
   $action = array();
   
   $action[] = array(
    \'text\' => $this->language->get(\'text_edit\'),
    \'href\' => $this->url->link(\'catalog/product/update\', \'token=\' . $this->session->data[\'token\'] . \'&product_id=\' . $result[\'product_id\'] . $url, \'SSL\')
   );
   
   if ($result[\'image\'] && file_exists(DIR_IMAGE . $result[\'image\'])) {
    $image = $this->model_tool_image->resize($result[\'image\'], 40, 40);
   } else {
    $image = $this->model_tool_image->resize(\'no_image.jpg\', 40, 40);
   }
 
   $product_specials = $this->model_catalog_product->getProductSpecials($result[\'product_id\']);

   if ($product_specials) {
                $special = reset($product_specials);
                if(($special[\'date_start\'] != \'0000-00-00\' && $special[\'date_start\'] > date(\'Y-m-d\')) || ($special[\'date_end\'] != \'0000-00-00\' && $special[\'date_end\'] < date(\'Y-m-d\'))) {
                    $special = FALSE;
                }
            } else {
                $special = FALSE;
            }
 
        $this->data[\'products\'][] = array(
    \'product_id\'       => $result[\'product_id\'],
    \'name\'             => $result[\'name\'],
    \'model\'            => $result[\'model\'],
    \'cost\'            => $result[\'cost\'],
    \'special\'          => $special[\'cost\'],
    \'image\'            => $image,    \'quantity\'         => $result[\'quantity\'],
    \'status\'           => ($result[\'status\'] ? $this->language->get(\'text_enabled\') : $this->language->get(\'text_disabled\')),
    \'selected\'         => isset($this->request->post[\'selected\']) && in_array($result[\'product_id\'], $this->request->post[\'selected\']),
    \'action\'           => $action

추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
이슈 [디시人터뷰] 라이징 스타로 인정받은 걸그룹, ‘리센느(RESCENE)’ 운영자 24/11/08 - -
설문 축의금 적게 내면 눈치 줄 것 같은 스타는? 운영자 24/11/11 - -
271780 lol님 질문 좀 [2] ㅋㅋㅋㅋ(211.200) 11.09.13 59 0
271779 다들 추석 잘보냈음?? [3] McHello갤로그로 이동합니다. 11.09.13 65 0
271778 형들 나 이대로 취업해도 되는걸까? [6] +어게인갤로그로 이동합니다. 11.09.13 155 0
271776 ActiveMQ 5.2에서 5.5로 업그레이드 [2] dbfh(99.242) 11.09.13 34 0
271775 강남역에서 갑자기 급해서 아무 빌딩 화장실 들어갔더니 [5] 분당살람갤로그로 이동합니다. 11.09.13 188 0
271773 천재해커님 [1] Adelposs갤로그로 이동합니다. 11.09.13 60 0
271772 자살춤이나 해커나 똑같다 [1] Adelposs갤로그로 이동합니다. 11.09.13 73 0
271771 야 이 쿼리문이 모지? [2] 쵸쵸(219.251) 11.09.13 55 0
271770 개발자로 취업하는 자세. [3] 천재해커(59.14) 11.09.13 220 0
271769 노예행진 // 2011.9.13 [4] 천재해커(59.14) 11.09.13 133 0
271768 딸딸충동.JPG [9] 천재해커(59.14) 11.09.13 664 0
271767 데비안 쓰는훃 있음? ㄱ호(92.231) 11.09.13 27 0
271765 헉 하드 진단 유틸로 검사하니 경고가 하나 떴다!! 거칠게갤로그로 이동합니다. 11.09.13 59 0
271764 으으 걍 꺼내서 바닥에 놓으니 또 조용하다??? [1] 거칠게갤로그로 이동합니다. 11.09.13 48 0
271763 애들아 좀봐봐 ㅜ [7] Adelposs갤로그로 이동합니다. 11.09.13 67 0
271761 후 나도 코드로 드립치고싶은데 [3] ♥♡정수정♡♥갤로그로 이동합니다. 11.09.13 126 0
271760 수요일에 바로 쳐들어가야겠다 진짜 ㅡㅡ 너무 시끄럽다 거칠게갤로그로 이동합니다. 11.09.13 66 0
271759 scanf_s 쓰면 [1] Adelposs갤로그로 이동합니다. 11.09.13 59 0
271758 아오 차라리 SSD를 살껄 ㅠㅠ.ㅠㅠ [4] 거칠게갤로그로 이동합니다. 11.09.13 123 0
271756 C++ 질문좀 드릴게요 [2] 라마(71.82) 11.09.13 67 0
271755 미친 wd 하드 절대 사지 마라 [5] 거칠게갤로그로 이동합니다. 11.09.13 102 0
271753 dd는 봅시다 [4] Adelposs갤로그로 이동합니다. 11.09.13 38 0
271752 마소에서 scanf_s는 뭐하러 만든거임? [6] 박구갤로그로 이동합니다. 11.09.13 157 0
271749 님들도 이런 생각안듬? 질문 볼 때 로하로하알로하갤로그로 이동합니다. 11.09.13 32 0
271748 수욜까지있어요 쿄스케횽 Light search갤로그로 이동합니다. 11.09.13 19 0
271744 C++ 아주아주 기초적인거 질문좀할께여ㅠ [3] 초보(118.103) 11.09.13 101 0
271743 프밍갤 채팅창 소환!! [2] 박구갤로그로 이동합니다. 11.09.13 101 0
271742 본격 모기잡는 알고리즘 [1] ㅁㅁㅁ(58.235) 11.09.13 67 0
271739 연속 파일 오픈 및 출력 방법좀 알려줘 횽들.. [3] 닉업스갤로그로 이동합니다. 11.09.13 39 0
271737 모기퇴치하는 알고리즘좀;; [1] ♥♡정수정♡♥갤로그로 이동합니다. 11.09.13 120 0
271736 씨비비즘 떡밥물것 처럼 하더니 Adelposs갤로그로 이동합니다. 11.09.13 27 0
271734 형들 저도 게임 프로그래머 신입 지원 가능할까여? [1] 힘쎈이끼갤로그로 이동합니다. 11.09.13 120 0
271733 내가 좆뻘글이나 쓰는 아텔 같지? Adelposs갤로그로 이동합니다. 11.09.13 22 0
271732 디씨에 동영상 올릴라믄 말이제 [3] 로하로하알로하갤로그로 이동합니다. 11.09.13 51 0
271731 너 좀위대한듯 Adelposs갤로그로 이동합니다. 11.09.13 41 0
271729 형들 비쥬얼스튜디오 6.0은 원래 그 이상버전에서 한거 못불러 오나요?? [2] ㅁㅁㅁ(58.235) 11.09.13 47 0
271728 형들 이거 좀 봐봐 [3] arduous갤로그로 이동합니다. 11.09.12 57 0
271726 <공고> 사업동업공고 - 컴퓨터활용에 능통하신분. 동업자 모집합니다. [3] winter(175.192) 11.09.12 65 0
271725 공휴일목록 인터넷에서 받아오기 좋은 곳 없음? [2] ㅇㅇㅇ(121.144) 11.09.12 41 0
271724 와 프갤이다! [6] ♥♡정수정♡♥갤로그로 이동합니다. 11.09.12 55 0
271723 공비횽 이과? [2] 로하로하알로하갤로그로 이동합니다. 11.09.12 89 0
271720 전 c를 잘 다룰줄암니다 [1] 오마이갓넬갤로그로 이동합니다. 11.09.12 102 0
271717 메소드를 랜덤으로 실행하려고 하면 [5] 초짜(203.229) 11.09.12 76 0
271715 춤춥세다 오마이갓넬갤로그로 이동합니다. 11.09.12 33 0
271714 진짜 팍근혜 찍는쉑이는 천하의 개.쉑이다. 쵸쵸(219.251) 11.09.12 69 0
271713 자살까지는 아니고 가끔 우울할 때 [3] 분당살람갤로그로 이동합니다. 11.09.12 54 0
271710 형들 이 드라이버들 구해줄수잇엉? [2] 옹잉양(122.42) 11.09.12 61 0
271709 컴파일하는 거 좀 조언해 주세요ㅜㅜ [2] 춫짱(121.130) 11.09.12 32 0
271708 형들 C언어 소스코드가 오류인데 수정좀해줘 [14] 11(121.139) 11.09.12 154 0
271705 형들 손정의처럼 되려면 대체어떻게해야할까요? [1] ㅇㅇ(112.186) 11.09.12 81 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2