Jump to content

I need a little help understanding syntax.


atrum

Recommended Posts

So I have been around the net a few times reading tutorials, watching vids as I try to teach my self php. I have come across a few items that I am having trouble understanding.

 

The first is the use of the % symbol.

 

For example I commonly see the % used in generating random strings of characters.

Here is piece of the code I used to generate a random string.

 

What is the purpose of % in this statement.

		if ($alt == 1) {
			$rndPKID .= $consonants[(rand() % strlen($consonants))];
			$alt = 0;
		} else {
			$rndPKID .= $vowels[(rand() % strlen($vowels))];
			$alt = 1;
		}

 

The second is the use of the & or as it is better known. The ampersand symbol.

 

I commonly see it used when declaring a function.

 

function newfunction($var1, &$var2){
//Do Stuff Here.
}

 

Can anyone help me understand those 2 symbols purpose and usage in php?

Link to comment
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.