everyone
Is there a way to make this piece of code work:
<?php
while (1) {
include('third_party_script.php');
}
?>
I don't know what's in third_party_script.php. It could look something like this:
<?php
function some() { return 0;}
some();
?>
If there is a function declaration in a third_party_script.php, I will get a "cannot redeclare" error. So I cannot use "include" o "require". Is there a solution?
Thanks in advance.