Ask Your Question
1

How can I end a included PHP script without ending the including Script?

asked 2023-04-26 11:08:00 +0000

wagner gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-04-26 11:08:57 +0000

wagner gravatar image

In PHP, you cannot directly "end" or "stop" an included script without also stopping the including script. However, you can use some techniques to control the flow of execution in the included script and stop it from executing further without affecting the including script.

One common approach is using return statements, which will halt the execution of the current file and return control to the including script. Here's an example:

main.php:

<?php
echo "Before include\n";
include 'included.php';
echo "After include\n";

included.php:

<?php
echo "Inside included script - start\n";
if (/* some condition */) {
    return;
}
echo "Inside included script - end\n";

Depending on the condition in the included.php file, you may or may not see the "Inside included script - end" output. However, the execution of main.php will continue regardless, and you'll see the "After include" output.

Keep in mind that using return inside an included script will only work if you're using include or require to include the script. If you're using includeonce or requireonce, the script will only be executed once, so the return statement will have no effect on subsequent inclusions.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

1 follower

Stats

Asked: 2023-04-26 11:08:00 +0000

Seen: 18 times

Last updated: Apr 26 '23