1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
//een globale variabele $publicPath = „/public/“ // de Functie myFunction ($arg, $arg2 = $publicPath) { … } // vraag de functie myFunction („myargument“) // wordt het tweede argument niet gespecificeerd, zodat wordt $publicPath gebruikt in de functie myFunction („myargument“, „/public/subfolder/“) // wordt het tweede argument gespecificeerd, zou het de standaard$publicPath variabele moeten met voeten treden
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: