Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.