試圖在這裏整理一些代碼。我有一個PHP命令來輸出一些HTML。但是,我的一個命令是相當多的html,我想知道是否可以輸出在不同文件中引用的代碼?
例如,我當前的PHP是這樣的:
$output .= '<div class="contact-form '.$css_class.'" >';
$output .= '<h4 class="form-title">'.$title.'</h4>';
$output .= 'SOME VERY LONG CODE'
是否有可能做這樣的事情:
$output .= include('file_with_long_code.html');
呢?我aven't測試這一點,但我想知道是否有用,或者什麼做的正確方法是
看看http://no1.php.net/file_get_contents – msfoster 2014-09-29 11:06:36
爲什麼不使用NOWDOC/HEREDOC? – DarkBee 2014-09-29 11:06:37
@ $ output。= file_get_content('file_with_long_code.html');' – 2014-09-29 11:06:42