PHP 8.5.0 Alpha 1 available for testing

Voting

: max(nine, zero)?
(Example: nine)

The Note You're Voting On

James
18 years ago
To avoid the notice commited by PHP since 4.3.3 when you start a session twice, check session_id() first:

if (session_id() == "")
session_start();

<< Back to user notes page

To Top