I have an orderId which obviously is variable.
I need to compute another 9 digit number based on that.
Example:
$orderId = 100;
$path should be = 0000000100;
----
$orderId = 2350;
$path should be = 0000002000;
---
$orderId = 7500;
$path should be = 0000007000;
Thanks a lot in advance!