PHP 8.5.0 Alpha 1 available for testing

Voting

: min(one, six)?
(Example: nine)

The Note You're Voting On

eparkerii at carolina dot rr dot com
16 years ago
Found something interesting. The following define:

<?php
define
("THIS-IS-A-TEST","This is a test");
echo
THIS-IS-A-TEST;
?>

Will return a '0'.

Whereas this:

<?php
define
("THIS_IS_A_TEST","This is a test");
echo
THIS_IS_A_TEST;
?>

Will return 'This is a test'.

This may be common knowledge but I only found out a few minutes ago.

[EDIT BY danbrown AT php DOT net: The original poster is referring to the hyphens versus underscores. Hyphens do not work in defines or variables, which is expected behavior.]

<< Back to user notes page

To Top