atrum Posted October 22, 2010 Share Posted October 22, 2010 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 https://forums.phpfreaks.com/topic/216603-i-need-a-little-help-understanding-syntax/ Share on other sites More sharing options...
Pikachu2000 Posted October 22, 2010 Share Posted October 22, 2010 The first is the modulus operator. More here. The second is 'passing by reference'. More here. Link to comment https://forums.phpfreaks.com/topic/216603-i-need-a-little-help-understanding-syntax/#findComment-1125375 Share on other sites More sharing options...
atrum Posted October 22, 2010 Author Share Posted October 22, 2010 Thank you very much. Link to comment https://forums.phpfreaks.com/topic/216603-i-need-a-little-help-understanding-syntax/#findComment-1125376 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.