PHP Notice: Only variables should be passed by reference

1 개요[ | ]

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

2 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}