j
k
j a
j l
hi,
shouldn't those two examples be the same?
array_sscanf("124dsf134", "%d%s%3d");
(5) Result: ({ /* 2 elements */ 124, "dsf134" })
array_sscanf("124dsf134", "%d%s%d");
(6) Result: ({ /* 3 elements */ 124, "dsf", 134 })
greetings, martin.
Back to the thread
Back to the list