note 102362 deleted from control-structures.foreach by thiago

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: mer KESLER 

----

// diziyi dizgeye atmak
  
function dizi_at_dizge($dizi,$parametre){
		// $son_eleman = end($dizi); 
		foreach ($dizi as $dizi_yaz)
			{
				if ($dizi_yaz == end($dizi)){  // dizinin son elemanına parametre koyma
					 $dizge .= 	$dizi_yaz; 
				}else{
					 $dizge .= 	$dizi_yaz.$parametre;  // parametre virgül nokta olabilir
					 }
			}
		return $dizge;
	} 
	
	echo dizi_at_dizge($iller,", ");	

// print => istanbul, ankara, sakarya, urfa, antep
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.