| 123456789101112131415 |
- <?php
- namespace addons\LuckyGroup\common\logic\customize;
- class Customize
- {
- public static function to($customize, $field_name)
- {
- foreach ($customize as $item) {
- $item = json_decode($item, true);
- if ($item['field_name'] == $field_name) return $item['new_text'];
- }
- return '';
- }
- }
|