Level 104
Nothing.
data_fill is an alias for data_set:
// vendor/laravel/framework/src/Illuminate/Collection/helpers.php
function data_fill(&$target, $key, $value)
{
return data_set($target, $key, $value, false);
}
1 like
What 's the difference between the two helper functions data_set() and data_fill() ?
Nothing.
data_fill is an alias for data_set:
// vendor/laravel/framework/src/Illuminate/Collection/helpers.php
function data_fill(&$target, $key, $value)
{
return data_set($target, $key, $value, false);
}
Please or to participate in this conversation.