Skip to content

Instantly share code, notes, and snippets.

@HavenShen
Created May 21, 2018 08:46
Show Gist options
  • Save HavenShen/c42a5762fa8692aed7a571fad2016c59 to your computer and use it in GitHub Desktop.
Save HavenShen/c42a5762fa8692aed7a571fad2016c59 to your computer and use it in GitHub Desktop.
可定义数组常量。
<?php
/*
|--------------------------------------------------------------------------
| 数组常量
|--------------------------------------------------------------------------
|
| 可定义数组常量。
|
*/
// PHP 7 之前
define('name', 'Haven Shen');
echo NAME;
// PHP 7 之后
define('ALLOWED_FILE_EXTENSIONS', [
'png',
'jpg'
]);
var_dump(in_array('jpg', ALLOWED_FILE_EXTENSIONS));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment