Se il numero è sempre lungo 4 puoi fare cosi :

$pippo = substr($cashier_debit,0,5);

Se il numero puo' essere più lungo puoi fare cosi :

$arrPippo = split( ":", $cashier_debit);
$pippo = trim($arrPippo[0]);

Non testato ma l'idea c'è.