Skip to content

Commit

Permalink
逻辑优化:valueToLabel、labelToValue 不传参数,才返回整个 map,传 null 不应当成不传参数
Browse files Browse the repository at this point in the history
  • Loading branch information
lip8up committed Mar 3, 2022
1 parent 421b70e commit 52af9c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ asList() | 作为列表返回,以便前端使用,返回值用类 js 格式
allKeys() | 获取全部 key 列表。
allValues() | 获取全部 value 列表。
allLabels() | 获取全部 label 列表。
valueToLabel(mixed $value = null) | 获取 $value 对应的 label 或 null。若不传参数或传 null,返回整个 `map`,例如:`[1 => '一', 2 => '二', 3 => '三']`
labelToValue(string $label = null) | 获取 $label 对应的 value 或 null。若不传参数或传 null,返回整个 `map`。例如:`['一' => 1, '二' => 2, '三' => 3]`
valueToLabel(mixed $value = null, $default = null) | 获取 $value 对应的 label,如不存在,返回 $default,若不传参数,返回整个 `map`,例如:`[1 => '一', 2 => '二', 3 => '三']`
labelToValue(string $label = null, $default = null) | 获取 $label 对应的 value,如不存在,返回 $default,若不传参数,返回整个 `map`。例如:`['一' => 1, '二' => 2, '三' => 3]`
isValidKey(string $key) | 判断是否为合法的 key。
isValidValue(mixed $value) | 判断是否为合法的 value。
isValidLabel(string $label) | 判断是否为合法的 label。
Expand Down

0 comments on commit 52af9c8

Please sign in to comment.