slipperyfish Posted August 7, 2006 Share Posted August 7, 2006 does anybody know of a javascript function that works the same as php's die() function? Quote Link to comment https://forums.phpfreaks.com/topic/16755-die-function/ Share on other sites More sharing options...
448191 Posted August 7, 2006 Share Posted August 7, 2006 There cannot be function in javascript that works the same as php's die().Why, do you ask?Because php's die() stops furter generation of a page on breakpoint. Javascript is executed after the page is already completely downloaded on the client. It's a big diff.If you want to halt execution of your scripts for a requested page, the next best thing, I can only suggest you watch your codepaths.If such a thing does exist, I'd like to know also. :) Quote Link to comment https://forums.phpfreaks.com/topic/16755-die-function/#findComment-70521 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.