How do I output just the last 3 characters of docno below? This docno outputs a really long string of numbers, and I wanted to simplify it to make it look cleaner by just showing the last 3 digits.
Yii::$app->reporter->col((isset($data[0]['docno'])? $data[0]['docno']:''),'300',null,false,'1px solid ','','L','Helvetica','11','','','').'<br />';
Thanks.