我需要检查db中是否有产品代码,否则请指定以101开头的产品代码并添加0001
我正在尝试这样
$store_code="101";
$product_code=($store_code(0001));
但是我得到一个空白页面......
我需要的结果是1010001
欢迎任何消化
注意:商店代码来自MySQL,但为了更容易理解,我现在就像这样展示
答案 0 :(得分:0)
因此,如果我得到了正确的答案,您首先要检查产品代码是否在数据库中,并且您没有这样做。
>>> import macropy.console
0=[]=====> MacroPy Enabled <=====[]=0
>>> from macropy.case_classes import macros, case
>>> @case
... class FooBar(foo, bar): pass
...
>>> foobar = FooBar(42, -42)
>>> foo, bar = foobar
>>> foo
42
>>> bar
-42
或
//lets say $product_code is your code
//if code not in db:
$product_code .= "0001"; //this will add 0001 at the end of the $product_code variable