PHP 8.5.0 Alpha 1 available for testing

Voting

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

The Note You're Voting On

axew3 at axew3 dot com
8 years ago
Php 7 - Define: "Defines a named constant at runtime. In PHP 7, array values are also accepted."

But prior PHP 7, you can maybe do this, to pass an array elsewhere using define:

$to_define_array = serialize($array);
define( "DEFINEANARRAY", $to_define_array );

... and so ...

$serialized = DEFINEANARRAY; // passing directly the defined will not work
$our_array = unserialize($serialized);

print_r($our_array);

<< Back to user notes page

To Top