vote up 0 vote down star
1

Hi,

I am new to php and wondering if I can have something like this:

<?php
 ...
 magicFunctionStart();
?>

<html>
   <head>...</head>
   <body>...</body>
</html>

<?php
 $variable = magicFunctionEnd();
 ...
?>

What I have to use right now is

<?php
 ...
 $variable = "<html><head>...</head><body>...</body></html>"
?>

Which is annoying and not readable.

Thanks.

flag

60% accept rate
1  
What are you trying to accomplish? – Chuck Oct 17 at 6:40
I am trying to put html code into a php variable – nigative Oct 17 at 6:43

5 Answers

vote up 9 vote down check

Have you tried "output buffering"?

<?php
 ...
 ob_start();
?>

<html>
   <head>...</head>
   <body>...<?php echo $another_variable ?></body>
</html>

<?php
 $variable = ob_get_clean();
 ...
?>
link|flag
Thanks. It is what I was looking for! – nigative Oct 17 at 6:53
One more question =) Is it possible to put other php variable inside of it? <html> <head>...</head> <body>$content</body> </html> – nigative Oct 17 at 6:55
1  
Sure. I have modified to code so you can see how to do that. – Wabbitseason Oct 17 at 6:58
Great! Thank you again. – nigative Oct 17 at 7:03
vote up 2 vote down

I think you want heredoc syntax.

For example:

$var = <<<HTML
<html>
   <head>
random crap here
</html>
HTML;
link|flag
vote up 1 vote down

Please take a look at a templating engine such as smarty it may help you do what you want.

link|flag
vote up 1 vote down

I'm not really sure about what you are trying to accomplish, but I think something like the heredoc syntax might be useful for you:

<?
$variable = <<< MYSTRING

<html>
   <head>...</head>
   <body>...</body>
</html>

MYSTRING;

However if you are trying to make HTML templates I would highly recommend you to get a real templating engine, like Smarty, Dwoo or Savant.

link|flag
vote up 1 vote down

Hi

Ok what you want to do is possible in a fashion. You cannot simply assign a block of HTML to a php variable or do so with a function. However there is a number of ways to get the result you wish. 1 as I've mentioned above is to investigate the use of a templating engine (I suggest you do this its worth while anyway). The second is to use an output buffer.

One of the problems you have is that any HTML you have in your page is immediately sent to the client which means it cant be used as a variable in php. However if you use the functions ob_start and ob_end_fush you can achive what you want.

eg

<?php 
  somesetupcode();
  ob_start();  ?>
<html>
<body>
html text
</body>
</html>
<?php
  //This will assign everything that has been output since call to ob_start to your    variable.
  $myHTML = ob_get_contents() ;
  ob_end_flush();

?>

Hope this helps you can read up on output buffers in php docs.

Update:Fixed a bug in my code :)

link|flag
ob_end_flush() will not return the buffer, you're after ob_get_clean(): php.net/manual/en/… – Rob Howard Oct 17 at 8:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.