Commit 209da1be authored by 王源's avatar 王源 🎧

添加空字符转null方法

parent 986b2f8e
...@@ -7,7 +7,6 @@ use Hyperf\Redis\Redis; ...@@ -7,7 +7,6 @@ use Hyperf\Redis\Redis;
use Hyperf\Utils\ApplicationContext; use Hyperf\Utils\ApplicationContext;
use Psr\EventDispatcher\EventDispatcherInterface; use Psr\EventDispatcher\EventDispatcherInterface;
/** /**
* 容器实例 * 容器实例
*/ */
...@@ -414,3 +413,27 @@ if (!function_exists('get_week_start_and_end')) { ...@@ -414,3 +413,27 @@ if (!function_exists('get_week_start_and_end')) {
return array("week_start" => $week_start, "week_end" => $week_end); return array("week_start" => $week_start, "week_end" => $week_end);
} }
} }
if (!function_exists('empty_string_2_null')) {
/**
* 空字符串转NULL
* @param array $arr
* @return array
*/
function empty_string_2_null(array $arr)
{
if (!empty($arr)) {
foreach ($arr as $key => $value) {
if (is_array($value)) {
$arr[$key] = empty_string_2_null($value);
} else {
if ($value === '') {
$arr[$key] = null;
}
}
}
}
return $arr;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment