Skip to content

Instantly share code, notes, and snippets.

@mikeschinkel
Created July 21, 2019 03:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeschinkel/ddac02c97ab95f626c8aff5804145a45 to your computer and use it in GitHub Desktop.
Save mikeschinkel/ddac02c97ab95f626c8aff5804145a45 to your computer and use it in GitHub Desktop.
Example PHP showing how to "return" a value from a require()
<?php
$version = require(__DIR__.'/version.php');
echo "The current version is {$version}";
<?php
// Returns version# "1.2.3" to requre()r
return "1.2.3";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment