I have this code:
if( ( $cacheout - $data['import_time'] ) > 129600 ){
unset( $fresh_data[$key] );
}
$data gets the time (import time) from an array which is a digital value, for example: 1576784091.
I wanted to add 43200 to this $data['import_time'] variable.
How to save it?
$dataarray. And desired output.$data['import_time'] + 43200or swith import_time to 43200 ?