관리 메뉴

웹개발자의 기지개

[PHP] 다소 긴 문장형식의 문자열을 간단히 변수처리하는 방법 본문

PHP

[PHP] 다소 긴 문장형식의 문자열을 간단히 변수처리하는 방법

http://portfolio.wonpaper.net 2021. 7. 20. 19:28

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?
$message = <<<EOT
    <table width='800' border='0' cellpadding='0' cellspacing='0'>
    <tr>
        <td><a href='https://aaaa' target='_blank'><img src='https://aaaa/mail/img/header.jpg' border='0' style='width:800px;'></a></td>
    </tr>
    <tr>
        <td width='800'>
        <table width='800' align='center' style='border-collapse:collapse;border:solid 1px #D9CED4;margin:10px auto;'>
        <td height='500' valign='top' style='padding:20px 10px;' class='back_img'>
    <b style='font-family:tahoma;font-size:2rem;'>Dear {$test1} {$test2}</b>
    <br><br>
    <p style='font-family:tahoma;font-size:2rem;word-break: keep-all;box-sizing: border-box;'>Herzlichen Glückwunsch!
    <br><br>
EOT;
?>
cs

 

<<<EOT  ~~~ EOT;  이부분이다.

 

그리고, 이 소스안에 변수항목을 넣고 싶다면 {$test1} , {$test2} 이런 형태로 처리하면 된다.

 

 

Comments