Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,880 questions

51,806 answers

573 users

How to get the names of all session functions in PHP

1 Answer

0 votes
echo "<pre>";
print_r(get_extension_funcs("session"));
echo "</pre>";


/*
run:

Array
(
    [0] => session_name
    [1] => session_module_name
    [2] => session_save_path
    [3] => session_id
    [4] => session_regenerate_id
    [5] => session_decode
    [6] => session_encode
    [7] => session_start
    [8] => session_destroy
    [9] => session_unset
    [10] => session_set_save_handler
    [11] => session_cache_limiter
    [12] => session_cache_expire
    [13] => session_set_cookie_params
    [14] => session_get_cookie_params
    [15] => session_write_close
    [16] => session_status
    [17] => session_register_shutdown
    [18] => session_commit
)


*/

 



answered Jun 21, 2016 by avibootz

Related questions

1 answer 139 views
1 answer 149 views
1 answer 157 views
1 answer 150 views
1 answer 138 views
1 answer 207 views
1 answer 163 views
...