Jump to content

Recommended Posts

I have several scripts which contain the exact same function name and accept the same number of arguments

 

example

 

script1.php

<?php

function DoThis($arg1){

.

.

}

?>

 

script2.php

<?php

function DoThis($arg1){

.

.

}

?>

 

script3.php

<?php

function DoThis($arg1){

.

.

}

?>

 

What syntax should I use (if indeed i can) to call each one. Is it something to do with NAMESPACE?

 

Thanks

Why namespaces?

 

Each script has its own scope, so if you call it with, say

DoThis('Hello world');
then it will call the version that is defined in the same script

 

It sounds like OP wants to call all three functions. Not just one of them.

assuming @requinix is correct, I would say:

 

Three functions that take the same parameters and do the same thing = two functions too many.

Three functions that take the same parameters but do different things = three different functions that should have three unique names.

Three functions that take the same parameters and do the same thing, but depend on context = use namespaces.

  • Like 1
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.