Convert string case.
$etl->transform('convert_case', $options);
Columns that will be transformed. If empty
, the transformation is applied to all columns.
$options = ['columns' => ['name', 'email']];
The mode of the conversion. It can be lower
/lowercase
, upper
/uppercase
or title
$options = ['mode' => 'upper'];
The character encoding.
$options = ['encoding' => 'ASCII'];