在变量中保存html / php代码

时间:2013-11-19 23:29:07

标签: php html wordpress variables pdf

我已经尝试将url的内容放入变量并将其发送到php文件(以获取带有file_get_contents()的内容)并将其打印到pdf。每次变量将url发送到php文件时,内容都将被重新加载。因为我之前想要操纵html内容,它不是我正在寻找的解决方案。

如何在变量中获取html内容(将在此处转换为php代码),将其(不重新加载)发送到php文件?它们是动态创建的图像,我想单独更改和删除,然后将内容发送到php文件。

<?php
$args = array('post_type' => 'attachment', 'post_parent' => $post->ID,  'orderby' =>     'menu_order', 'order' => 'ASC'); 
            $attachments = get_children($args); 
foreach ( $attachments as $attachment_id => $attachment ) {
//use $attachment->ID to retrieve attachment information
$image = wp_get_attachment_image_src($attachment->ID, 'full');
$img = '<img class="print-no" src="'.$image[0].'" />';


   echo '<span class="print-no">';

            echo $img;

                 echo '</span>'; 
}
?>

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我认为您可以将元素保存在变量中并稍后打印。

$me ='<span class="print-no">';

       $me.= $img;

             $me.= '</span>';