This topic is locked
[SOLVED]

 Confirmation Please - Before Insert Record

1/24/2013 4:22:02 AM
PHPRunner General questions
I
Ivan van Oosterhout author

I need confirmation because it does not work for me in PHP Enterprise (Build 14479)
Veld02 has data: 8718194692452
I import from excel, i want to modify the data beforre it goed into the database.
Before Insert Record:

$values["Veld02"] = str_pad($rawvalues["Veld02"], 5, "0", STR_PAD_BOTH);
I think it should give me, 00000871819469245200000
when i echo i get an array data with the original data.
Please explain because i dont know what i do wrong...
Regards Ivan

Sergey Kornilov admin 1/24/2013

You need to read str_pad() function documentation. Second parameter is the desired string length:

http://php.net/manual/en/function.str-pad.php
5 characters is too short, according to your example it needs to be 23.

I
Ivan van Oosterhout author 1/24/2013

Offcourse,
Stupid of me, Thank you Sergey!
Kind regards Ivan