PHP Notice: Only variables should be passed by reference

Jmnote (토론 | 기여)님의 2023년 2월 21일 (화) 19:31 판 (새 문서: ==개요== ;<nowiki>PHP Notice: Only variables should be passed by reference</nowiki> <syntaxhighlight lang='php' run> <?php echo end(explode(',', 'hello,world')); </syntaxhighlight...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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 }}