PHP生成固定字符串

时间:2016-09-26 09:50:16

标签: php

我的网站需要生成固定的前缀字符串,订单ID作为发票编号。

目前的代码是     $ cnt = strlen($ order-> id);
    $ remaining = 20- $ cnt;
    $ data [' invoiceNo'] = $ this-> generateRandomString($ retain)。$ order-> id;

如何将其更改为JGJEPOSONLINECS + order id而不是random string + order id

的前缀

1 个答案:

答案 0 :(得分:2)

尝试使用此代码

$data['invoiceNo'] = 'JGJEPOSONLINECS'.$order->id ;