PHP 8.5.0 Alpha 1 available for testing

Voting

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

The Note You're Voting On

bobray99 at softville dot com
3 years ago
Be careful when using include_once and require_once for files that return a value:

fiddle2.php
<?php
return "Some String";

fiddle.php
<?php
$s
= require_once('fiddle2.php');
echo
"\n" . $s;
$s = require_once('fiddle2.php');
echo
"\n" . $s;

/* output
Some String
1
*/

The second time require_once occurs, it returns 1 because the file has already been included.

<< Back to user notes page

To Top