Customize.php 339 B

123456789101112131415
  1. <?php
  2. namespace addons\LuckyGroup\common\logic\customize;
  3. class Customize
  4. {
  5. public static function to($customize, $field_name)
  6. {
  7. foreach ($customize as $item) {
  8. $item = json_decode($item, true);
  9. if ($item['field_name'] == $field_name) return $item['new_text'];
  10. }
  11. return '';
  12. }
  13. }