Created by emiliodeg, last update on 07/07/2008 15:15
Cookie Class
very easy to use
set cookie: Cookie::set('car','abc 123');
get cookie: Cookie::get('car'); //return 'abc 123'
del cookie: Cookie::del('car'); //delete cookie car
del all cookies: Cookie::delAll();
isset cookie??: Cookie::exists('car'); //return bool value
empty cookie??: Cookie::isEmpty('car'); //return bool value
class Cookie{
publicstatic function set($cookieName,$value='',$time=3600,$path=null,$domain=null,$httpOnly =false){
PHPEdit supports almost all framework within Code Hint and Code Insight. You simply need to configure PHPEdit the right way.
To add support for Zend Framework:
1. Display the preference dialog (F10)
2. In Language -> PHP -> File dependencies, in the Include Path part, add the path to your ZF location, check the recursive checkbox, click on "Parse for cache", then Add.
You should now have all code hint and code completion for the framework.