What's PHP Equivalent of Java Servlet Filter?
Posted
by ZZ Coder
on Stack Overflow
See other posts from Stack Overflow
or by ZZ Coder
Published on 2009-10-02T00:14:16Z
Indexed on
2010/04/27
21:43 UTC
Read the original article
Hit count: 499
On Java side, we have a servlet filter that handles authentication. We don't have to change all other servlet or JSPs to add authentication to the page, unless the page needs customized content.
How can we achieve the same on PHP? We don't use any frameworks on PHP.
© Stack Overflow or respective owner