개요
- PHP Notice: Only variables should be passed by reference
<?php
echo end(explode(',', 'hello,world'));
<?php
$a = explode(',', 'hello,world');
echo end($a);
<?php
echo end(explode(',', 'hello,world'));
<?php
$a = explode(',', 'hello,world');
echo end($a);