-
Notifications
You must be signed in to change notification settings - Fork 99
/
SC_Utils.php
executable file
·2136 lines (1889 loc) · 63.8 KB
/
SC_Utils.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* 各種ユーティリティクラス.
*
* 主に static 参照するユーティリティ系の関数群
*
* :XXX: 内部でインスタンスを生成している関数は, Helper クラスへ移動するべき...
*
* @package Util
* @author EC-CUBE CO.,LTD.
* @version $Id$
*/
class SC_Utils
{
// インストール初期処理
public static function sfInitInstall()
{
if (
!defined('ECCUBE_INSTALL') // インストール済みが定義されていない。
&& !GC_Utils_Ex::isInstallFunction() // インストール中でない。
) {
$install_url = SC_Utils_Ex::getInstallerPath();
header('Location: ' . $install_url);
exit;
}
$path = HTML_REALDIR . 'install';
if (file_exists($path)) {
SC_Utils_Ex::sfErrorHeader('>> インストール完了後に /install フォルダを削除してください。');
}
}
/**
* インストーラーの URL を返す
*
* @return string インストーラーの URL
*/
public static function getInstallerPath()
{
$netUrl = new Net_URL();
$installer = 'install/' . DIR_INDEX_PATH;
// XXX メソッド名は add で始まるが、実際には置換を行う
$netUrl->addRawQueryString('');
$current_url = $netUrl->getURL();
$current_url = dirname($current_url) . '/';
// XXX 先頭の / を含まない。
$urlpath = substr($_SERVER['SCRIPT_FILENAME'], strlen(HTML_REALDIR));
// / を 0、/foo/ を 1 としたディレクトリー階層数
$dir_level = substr_count($urlpath, '/');
$installer_url .= str_repeat('../', $dir_level) . $installer;
return $installer_url;
}
/**
* 相対パスで記述された URL から絶対パスの URL を取得する.
*
* この関数は, http(s):// から始まる URL を解析し, 相対パスで記述されていた
* 場合, 絶対パスに変換して返す
*
* 例)
* http://www.example.jp/aaa/../index.php
* ↓
* http://www.example.jp/index.php
*
* @param string $url http(s):// から始まる URL
* @return string $url を絶対パスに変換した URL
*/
public static function getRealURL($url)
{
$parse = parse_url($url);
$tmp = explode('/', $parse['path']);
$results = array();
foreach ($tmp as $v) {
if ($v == '' || $v == '.') {
// queit.
} elseif ($v == '..') {
array_pop($results);
} else {
array_push($results, $v);
}
}
$path = join('/', $results);
return $parse['scheme'] . '://' . $parse['host'] . ':' . $parse['port'] .'/' . $path;
}
// 装飾付きエラーメッセージの表示
/**
* @param string $mess
*/
public static function sfErrorHeader($mess, $print = false)
{
global $GLOBAL_ERR;
$GLOBAL_ERR.= '<div id="errorHeader">';
$GLOBAL_ERR.= $mess;
$GLOBAL_ERR.= '</div>';
if ($print) {
echo $GLOBAL_ERR;
}
}
/* エラーページの表示 */
public static function sfDispError($type)
{
require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_DispError_Ex.php';
$objPage = new LC_Page_Error_DispError_Ex();
$objPage->init();
$objPage->type = $type;
$objPage->process();
exit;
}
/* サイトエラーページの表示 */
public static function sfDispSiteError($type, $objSiteSess = '', $return_top = false, $err_msg = '')
{
require_once CLASS_EX_REALDIR . 'page_extends/error/LC_Page_Error_Ex.php';
$objPage = new LC_Page_Error_Ex();
$objPage->init();
$objPage->type = $type;
$objPage->objSiteSess = $objSiteSess;
$objPage->return_top = $return_top;
$objPage->err_msg = $err_msg;
$objPage->is_mobile = SC_Display_Ex::detectDevice() == DEVICE_TYPE_MOBILE;
$objPage->process();
exit;
}
/**
* 前方互換用
*
* @deprecated 2.12.0 trigger_error($debugMsg, E_USER_ERROR) を使用すること
*/
public function sfDispException($debugMsg = null)
{
trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING);
trigger_error($debugMsg, E_USER_ERROR);
}
/**
* 認証の可否判定
*
* @param SC_Session $objSess
* @param bool $disp_error
* @return bool
*/
public static function sfIsSuccess(SC_Session $objSess, $disp_error = true)
{
$ret = $objSess->IsSuccess();
if ($ret != SUCCESS) {
if ($disp_error) {
// エラーページの表示
SC_Utils_Ex::sfDispError($ret);
}
return false;
}
// リファラーチェック(CSRFの暫定的な対策)
// 「リファラ無」 の場合はスルー
// 「リファラ有」 かつ 「管理画面からの遷移でない」 場合にエラー画面を表示する
if (empty($_SERVER['HTTP_REFERER'])) {
// TODO 警告表示させる?
// sfErrorHeader('>> referrerが無効になっています。');
} else {
$domain = parse_url(HTTP_URL);
$referer = parse_url($_SERVER['HTTP_REFERER']);
// 管理画面から以外の遷移の場合はエラー画面を表示
if ($domain['host'] !== $referer['host']) {
if ($disp_error) SC_Utils_Ex::sfDispError(INVALID_MOVE_ERRORR);
return false;
}
}
return true;
}
/**
* 文字列をアスタリスクへ変換する.
*
* @param string $passlen 変換する文字列
* @return string アスタリスクへ変換した文字列
*/
public static function sfPassLen($passlen)
{
$ret = '';
for ($i=0;$i<$passlen;true) {
$ret.='*';
$i++;
}
return $ret;
}
/**
* HTTPSかどうかを判定
*
* @return bool
*/
public static function sfIsHTTPS()
{
// HTTPS時には$_SERVER['HTTPS']には空でない値が入る
// $_SERVER['HTTPS'] != 'off' はIIS用
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
return true;
} else {
return false;
}
}
/**
* 正規の遷移がされているかを判定
* 前画面でuniqidを埋め込んでおく必要がある
*
* 使用されていない.
*
* @param obj SC_Session, SC_SiteSession
* @return bool
*/
public function sfIsValidTransition($objSess)
{
// 前画面からPOSTされるuniqidが正しいものかどうかをチェック
$uniqid = $objSess->getUniqId();
if (!empty($_POST['uniqid']) && ($_POST['uniqid'] === $uniqid)) {
return true;
} else {
return false;
}
}
/* DB用日付文字列取得 */
public static function sfGetTimestamp($year, $month, $day, $last = false)
{
if ($year != '' && $month != '' && $day != '') {
if ($last) {
$time = '23:59:59';
} else {
$time = '00:00:00';
}
$date = $year.'-'.$month.'-'.$day.' '.$time;
} else {
$date = '';
}
return $date;
}
/* DB用日付日時文字列取得 */
/**
* @param string $month
* @param string $day
* @param string $hour
* @param string $minutes
*/
public static function sfGetTimestampistime($year, $month, $day, $hour, $minutes, $last = false)
{
if ($year != '' && $month != '' && $day != '' && $hour != '' && $minutes != '') {
if ($last) {
$time = $hour.':'.$minutes.':59';
} else {
$time = $hour.':'.$minutes.':00';
}
$date = $year.'-'.$month.'-'.$day.' '.$time;
} else {
$date = '';
}
return $date;
}
/**
* INT型の数値チェック
* ・FIXME: マイナス値の扱いが不明確
* ・XXX: INT_LENには収まるが、INT型の範囲を超えるケースに対応できないのでは?
*
* @param mixed $value
* @return bool
*/
public static function sfIsInt($value)
{
if (strlen($value) >= 1 && strlen($value) <= INT_LEN && is_numeric($value)) {
return true;
}
return false;
}
/**
* 桁が0で埋められているかを判定する
*
* @param string $value 検査対象
* @return boolean 0で埋められている
*/
public static function sfIsZeroFilling($value)
{
if (strlen($value) > 1 && $value{0} === '0')
return true;
return false;
}
/**
* @param string $data
*/
public static function sfGetCSVData($data, $prefix = '')
{
if ($prefix == '') {
$dir_name = SC_Utils_Ex::sfUpDirName();
$file_name = $dir_name . date('ymdHis') .'.csv';
} else {
$file_name = $prefix . date('ymdHis') .'.csv';
}
if (mb_internal_encoding() == CHAR_CODE) {
$data = mb_convert_encoding($data, 'SJIS-Win', CHAR_CODE);
}
/* データを出力 */
return array($file_name, $data);
}
/* 1階層上のディレクトリ名を取得する */
public static function sfUpDirName()
{
$path = $_SERVER['SCRIPT_NAME'];
$arrVal = explode('/', $path);
$cnt = count($arrVal);
return $arrVal[($cnt - 2)];
}
// チェックボックスの値をマージ
/**
* @deprecated
*/
public function sfMergeCBValue($keyname, $max)
{
$conv = '';
$cnt = 1;
for ($cnt = 1; $cnt <= $max; $cnt++) {
if ($_POST[$keyname . $cnt] == '1') {
$conv.= '1';
} else {
$conv.= '0';
}
}
return $conv;
}
// html_checkboxesの値をマージして2進数形式に変更する。
/**
* @deprecated
*/
public function sfMergeCheckBoxes($array, $max)
{
$ret = '';
$arrTmp = array();
if (is_array($array)) {
foreach ($array as $val) {
$arrTmp[$val] = '1';
}
}
for ($i = 1; $i <= $max; $i++) {
if (isset($arrTmp[$i]) && $arrTmp[$i] == '1') {
$ret.= '1';
} else {
$ret.= '0';
}
}
return $ret;
}
// html_checkboxesの値をマージして「-」でつなげる。
/**
* @deprecated
*/
public function sfMergeParamCheckBoxes($array)
{
$ret = '';
if (is_array($array)) {
foreach ($array as $val) {
if ($ret != '') {
$ret.= "-$val";
} else {
$ret = $val;
}
}
} else {
$ret = $array;
}
return $ret;
}
// html_checkboxesの値をマージしてSQL検索用に変更する。
/**
* @deprecated
*/
public function sfSearchCheckBoxes($array)
{
$max = max($array);
$ret = '';
for ($i = 1; $i <= $max; $i++) {
$ret .= in_array($i, $array) ? '1' : '_';
}
if (strlen($ret) != 0) {
$ret .= '%';
}
return $ret;
}
// 2進数形式の値をhtml_checkboxes対応の値に切り替える
/**
* @deprecated
*/
public function sfSplitCheckBoxes($val)
{
$arrRet = array();
$len = strlen($val);
for ($i = 0; $i < $len; $i++) {
if (substr($val, $i, 1) == '1') {
$arrRet[] = ($i + 1);
}
}
return $arrRet;
}
// チェックボックスの値をマージ
/**
* @deprecated
*/
public function sfMergeCBSearchValue($keyname, $max)
{
$conv = '';
$cnt = 1;
for ($cnt = 1; $cnt <= $max; $cnt++) {
if ($_POST[$keyname . $cnt] == '1') {
$conv.= '1';
} else {
$conv.= '_';
}
}
return $conv;
}
// チェックボックスの値を分解
/**
* @deprecated
*/
public function sfSplitCBValue($val, $keyname = '')
{
$arr = array();
$len = strlen($val);
$no = 1;
for ($cnt = 0; $cnt < $len; $cnt++) {
if ($keyname != '') {
$arr[$keyname . $no] = substr($val, $cnt, 1);
} else {
$arr[] = substr($val, $cnt, 1);
}
$no++;
}
return $arr;
}
// キーと値をセットした配列を取得
/**
* @param string $valname
* @param string $keyname
*/
public static function sfArrKeyValue($arrList, $keyname, $valname, $len_max = '', $keysize = '')
{
$arrRet = array();
$max = count($arrList);
if ($len_max != '' && $max > $len_max) {
$max = $len_max;
}
for ($cnt = 0; $cnt < $max; $cnt++) {
if ($keysize != '') {
$key = SC_Utils_Ex::sfCutString($arrList[$cnt][$keyname], $keysize);
} else {
$key = $arrList[$cnt][$keyname];
}
$val = $arrList[$cnt][$valname];
if (!isset($arrRet[$key])) {
$arrRet[$key] = $val;
}
}
return $arrRet;
}
/**
* キーと値をセットした配列を取得(値が複数の場合)
* 使用されていない
*/
public function sfArrKeyValues($arrList, $keyname, $valname, $len_max = '', $keysize = '', $connect = '')
{
$max = count($arrList);
if ($len_max != '' && $max > $len_max) {
$max = $len_max;
}
$keyValues = array();
for ($cnt = 0; $cnt < $max; $cnt++) {
if ($keysize != '') {
$key = SC_Utils_Ex::sfCutString($arrList[$cnt][$keyname], $keysize);
} else {
$key = $arrList[$cnt][$keyname];
}
$val = $arrList[$cnt][$valname];
if ($connect != '') {
$keyValues[$key].= "$val".$connect;
} else {
$keyValues[$key][] = $val;
}
}
return $keyValues;
}
// 配列の値をカンマ区切りで返す。
public static function sfGetCommaList($array, $space=true, $arrPop = array())
{
if (count($array) > 0) {
$line = '';
foreach ($array as $val) {
if (!in_array($val, $arrPop)) {
if ($space) {
$line .= $val . ', ';
} else {
$line .= $val . ',';
}
}
}
if ($space) {
$line = preg_replace("/, $/", '', $line);
} else {
$line = preg_replace("/,$/", '', $line);
}
return $line;
} else {
return false;
}
}
/* 配列の要素をCSVフォーマットで出力する。*/
public static function sfGetCSVList($array)
{
$line = '';
if (count($array) > 0) {
foreach ($array as $val) {
$val = mb_convert_encoding($val, CHAR_CODE, CHAR_CODE);
$line .= '"' .$val. '",';
}
$line = preg_replace("/,$/", "\r\n", $line);
} else {
return false;
}
return $line;
}
/**
* check_set_term
* 年月日に別れた2つの期間の妥当性をチェックし、整合性と期間を返す
* 引数 (開始年,開始月,開始日,終了年,終了月,終了日)
* 戻値 array(1,2,3)
* 1.開始年月日 (YYYY/MM/DD 000000)
* 2.終了年月日 (YYYY/MM/DD 235959)
* 3.エラー (0 = OK, 1 = NG)
*
* 使用されていない
*/
public function sfCheckSetTerm($start_year, $start_month, $start_day, $end_year, $end_month, $end_day)
{
// 期間指定
$error = 0;
if ($start_month || $start_day || $start_year) {
if (! checkdate($start_month, $start_day, $start_year)) $error = 1;
} else {
$error = 1;
}
if ($end_month || $end_day || $end_year) {
if (! checkdate($end_month, $end_day, $end_year)) $error = 2;
}
if (! $error) {
$date1 = $start_year .'/'.sprintf('%02d', $start_month) .'/'.sprintf('%02d', $start_day) .' 000000';
$date2 = $end_year .'/'.sprintf('%02d', $end_month) .'/'.sprintf('%02d', $end_day) .' 235959';
if ($date1 > $date2) $error = 3;
} else {
$error = 1;
}
return array($date1, $date2, $error);
}
// エラー箇所の背景色を変更するためのfunction SC_Viewで読み込む
public function sfSetErrorStyle()
{
return 'style="background-color:'.ERR_COLOR.'"';
}
// 一致した値のキー名を取得
public function sfSearchKey($array, $word, $default)
{
foreach ($array as $key => $val) {
if ($val == $word) {
return $key;
}
}
return $default;
}
/**
* エラー時のカラー(CSS)を設定
* @param string $val
*/
public function sfGetErrorColor($val)
{
if ($val != '') {
return 'background-color:' . ERR_COLOR;
}
return '';
}
public function sfGetEnabled($val)
{
if (! $val) {
return ' disabled="disabled"';
}
return '';
}
public function sfGetChecked($param, $value)
{
if ((string) $param === (string) $value) {
return 'checked="checked"';
}
return '';
}
public function sfTrim($str)
{
$ret = preg_replace("/^[ \n\r]*/u", '', $str);
$ret = preg_replace("/[ \n\r]*$/u", '', $ret);
return $ret;
}
/**
* 税金額を返す
*
* ・店舗基本情報に基づいた計算は SC_Helper_DB::sfTax() を使用する
*
* @param integer $price 計算対象の金額
* @param integer $tax 税率(%単位)
* XXX integer のみか不明
* @param integer $tax_rule 端数処理
* @return double 税金額
*/
public static function sfTax($price, $tax, $tax_rule)
{
$real_tax = $tax / 100;
$ret = $price * $real_tax;
$ret = SC_Helper_TaxRule_Ex::roundByCalcRule($ret, $tax_rule);
return $ret;
}
/**
* 税金付与した金額を返す
*
* ・店舗基本情報に基づいた計算は SC_Helper_DB::sfTax() を使用する
*
* @param integer $price 計算対象の金額
* @param integer $tax 税率(%単位)
* XXX integer のみか不明
* @param integer $tax_rule 端数処理
* @return double 税金付与した金額
*/
public static function sfCalcIncTax($price, $tax, $tax_rule)
{
return $price + SC_Utils_Ex::sfTax($price, $tax, $tax_rule);
}
/**
* 桁数を指定して四捨五入
*
* 使用されていない
*/
public function sfRound($value, $pow = 0)
{
$adjust = pow(10, $pow-1);
// 整数且つ0でなければ桁数指定を行う
if (SC_Utils_Ex::sfIsInt($adjust) and $pow > 1) {
$ret = (round($value * $adjust)/$adjust);
}
$ret = round($ret);
return $ret;
}
/**
* ポイント付与
* $product_id が使われていない。
* @param float $price
* @param float $point_rate
* @param int $rule
* @return double
*/
public static function sfPrePoint($price, $point_rate, $rule = POINT_RULE)
{
$real_point = (float) $point_rate / 100;
$ret = (float) $price * $real_point;
$ret = SC_Helper_TaxRule_Ex::roundByCalcRule($ret, $rule);
return $ret;
}
/* 規格分類の件数取得 */
public static function sfGetClassCatCount()
{
$sql = 'select count(dtb_class.class_id) as count, dtb_class.class_id ';
$sql.= 'from dtb_class inner join dtb_classcategory on dtb_class.class_id = dtb_classcategory.class_id ';
$sql.= 'where dtb_class.del_flg = 0 AND dtb_classcategory.del_flg = 0 ';
$sql.= 'group by dtb_class.class_id, dtb_class.name';
$objQuery = SC_Query_Ex::getSingletonInstance();
$arrList = $objQuery->getAll($sql);
// キーと値をセットした配列を取得
$arrRet = SC_Utils_Ex::sfArrKeyValue($arrList, 'class_id', 'count');
return $arrRet;
}
/**
* 商品IDとカテゴリIDから商品規格IDを取得する
* @param int $product_id
* @param int $classcategory_id1 デフォルト値0
* @param int $classcategory_id2 デフォルト値0
* @return int
*/
public static function sfGetProductClassId($product_id, $classcategory_id1=0, $classcategory_id2=0)
{
$where = 'product_id = ? AND classcategory_id1 = ? AND classcategory_id2 = ?';
if (!$classcategory_id1) { //NULLが入ってきた場合への対策
$classcategory_id1 = 0;
}
if (!$classcategory_id2) {
$classcategory_id2 = 0;
}
$objQuery = SC_Query_Ex::getSingletonInstance();
$ret = $objQuery->get('product_class_id', 'dtb_products_class', $where, Array($product_id, $classcategory_id1, $classcategory_id2));
return $ret;
}
/* 文末の「/」をなくす */
public static function sfTrimURL($url)
{
$ret = rtrim($url, '/');
return $ret;
}
/* DBから取り出した日付の文字列を調整する。*/
public function sfDispDBDate($dbdate, $time = true)
{
list($y, $m, $d, $H, $M) = preg_split('/[- :]/', $dbdate);
if (strlen($y) > 0 && strlen($m) > 0 && strlen($d) > 0) {
if ($time) {
$str = sprintf('%04d/%02d/%02d %02d:%02d', $y, $m, $d, $H, $M);
} else {
$str = sprintf('%04d/%02d/%02d', $y, $m, $d, $H, $M);
}
} else {
$str = '';
}
return $str;
}
/**
* 配列をキー名ごとの配列に変更する
*
* @param array $array
* @param bool $isColumnName
* @return array
*/
public static function sfSwapArray($array, $isColumnName = true)
{
$arrRet = array();
foreach ($array as $key1 => $arr1) {
if (!is_array($arr1)) continue 1;
$index = 0;
foreach ($arr1 as $key2 => $val) {
if ($isColumnName) {
$arrRet[$key2][$key1] = $val;
} else {
$arrRet[$index++][$key1] = $val;
}
}
}
return $arrRet;
}
/**
* 連想配列から新たな配列を生成して返す.
*
* $requires が指定された場合, $requires に含まれるキーの値のみを返す.
*
* @param array $hash 連想配列
* @param array $requires 必須キーの配列
* @return array 連想配列の値のみの配列
*/
public static function getHash2Array($hash, $requires = array())
{
$array = array();
$i = 0;
foreach ($hash as $key => $val) {
if (!empty($requires)) {
if (in_array($key, $requires)) {
$array[$i] = $val;
$i++;
}
} else {
$array[$i] = $val;
$i++;
}
}
return $array;
}
/* かけ算をする(Smarty用) */
public function sfMultiply($num1, $num2)
{
return $num1 * $num2;
}
/**
* 加算ポイントの計算
*
* ・店舗基本情報に基づいた計算は SC_Helper_DB::sfGetAddPoint() を使用する
*
* @param integer $totalpoint
* @param integer $use_point
* @param integer $point_rate
* @return integer 加算ポイント
*/
public static function sfGetAddPoint($totalpoint, $use_point, $point_rate)
{
// 購入商品の合計ポイントから利用したポイントのポイント換算価値を引く方式
$add_point = $totalpoint - intval($use_point * ($point_rate / 100));
if ($add_point < 0) {
$add_point = '0';
}
return $add_point;
}
/* 一意かつ予測されにくいID */
public static function sfGetUniqRandomId($head = '')
{
// 予測されないようにランダム文字列を付与する。
$random = GC_Utils_Ex::gfMakePassword(8);
// 同一ホスト内で一意なIDを生成
$id = uniqid($head);
return $id . $random;
}
/**
* 二回以上繰り返されているスラッシュ[/]を一つに変換する。
*
* @param string $istr
* @return string
*/
public static function sfRmDupSlash($istr)
{
if (preg_match('|^http://|', $istr)) {
$str = substr($istr, 7);
$head = 'http://';
} elseif (preg_match('|^https://|', $istr)) {
$str = substr($istr, 8);
$head = 'https://';
} else {
$str = $istr;
$head = '';
}
$str = preg_replace('|[/]+|', '/', $str);
$ret = $head . $str;
return $ret;
}
/**
* テキストファイルの文字エンコーディングを変換する.
*
* $filepath に存在するテキストファイルの文字エンコーディングを変換する.
* 変換前の文字エンコーディングは, mb_detect_order で設定した順序で自動検出する.
* 変換後は, 変換前のファイル名に「enc_」というプレフィクスを付与し,
* $out_dir で指定したディレクトリへ出力する
*
* TODO $filepath のファイルがバイナリだった場合の扱い
* TODO fwrite などでのエラーハンドリング
*
* @access public
* @param string $filepath 変換するテキストファイルのパス
* @param string $enc_type 変換後のファイルエンコーディングの種類を表す文字列
* @param string $out_dir 変換後のファイルを出力するディレクトリを表す文字列
* @return string 変換後のテキストファイルのパス
*/
public static function sfEncodeFile($filepath, $enc_type, $out_dir)
{
$ifp = fopen($filepath, 'r');
// 正常にファイルオープンした場合
if ($ifp !== false) {
$basename = basename($filepath);
$outpath = $out_dir . 'enc_' . $basename;
$ofp = fopen($outpath, 'w+');
while (!feof($ifp)) {
$line = fgets($ifp);
$line = mb_convert_encoding($line, $enc_type, 'auto');
fwrite($ofp, $line);
}
fclose($ofp);
fclose($ifp);
// ファイルが開けなかった場合はエラーページを表示
} else {
SC_Utils_Ex::sfDispError('');
exit;
}
return $outpath;
}
public function sfCutString($str, $len, $byte = true, $commadisp = true)
{
if ($byte) {
if (strlen($str) > ($len + 2)) {
$ret =substr($str, 0, $len);
$cut = substr($str, $len);