신박하게 변수명 바꿔버리기
2020. 1. 5. 19:13ㆍPHP
728x90
<?php
$title = 'subject';
$$title = 'PHP tutorial';
echo $title . ' 이것이 $title 이고' . '<br>' . $subject . '이것은 $$title이다.';
?>
//출력 결과
subject 이것이 $title 이고
PHP tutorial이것은 $$title이다.
$ $변수명 = 이라는 방식으로 변수명을 바꿔버린다.
728x90
반응형
'PHP' 카테고리의 다른 글
PHP url Notice: Undefined index 에러 (0) | 2020.01.07 |
---|---|
AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? (2) | 2020.01.06 |
PHP란 무엇인가 (2) - Server와 Client의 이해 (0) | 2020.01.05 |
PHP란 무엇인가 (1) - Server와 Client의 이해 (0) | 2020.01.05 |
XAMPP를 활용한 PHP설치, PHP 개발환경 (0) | 2019.12.30 |