Jump to content

Sorry, very basic


laPistola

Recommended Posts

I have had this issue before but have forgot the fix and will hit my head once im reminded..

 

I have this string

 

// $an_result currently = 00001297
$an = $an_result + 1;
// which outputs 1298

 

What i need is all if any zero's before the number to stay. the number before the +1 could have up to 7 zero's in front or as little as 1 or none

 

Thanks

 

Link to comment
https://forums.phpfreaks.com/topic/198214-sorry-very-basic/
Share on other sites

Thank you all for your input.

 

Thinking about it more the quick fix i was thinking was a JS function haha

 

Didn't see DanielO till just now but my fix was

 

		$anl = strlen($an_result);
		$an_result++;
		$an = str_pad($an_result, $anl, "0", STR_PAD_LEFT);

 

Thank you PFMaBiSmAd

 

Link to comment
https://forums.phpfreaks.com/topic/198214-sorry-very-basic/#findComment-1040007
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.