将一个php函数放在echo html中

时间:2017-03-16 05:09:13

标签: php jquery html

我想在HTML文件中包含一个函数,该函数在php文件中显示为echo,我该如何实现?提前谢谢。

功能: self::showMap($item);

回声:

<?php
    echo "<html lang='en'>
    <head>
      <meta charset='utf-8' />
      <title>jQuery UI Tabs - Default functionality</title>
      <link rel='stylesheet' href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css' />
      <script src='http://code.jquery.com/jquery-1.9.1.js'></script>
      <script src='http://code.jquery.com/ui/1.10.3/jquery-ui.js'></script>
      <link rel='stylesheet' href=''/resources/demos/style.css' />
      <script>
      $(function() {
        $( '#tabs' ).tabs();
      });
      </script>
    </head>
    <body>

    <div id='tabs'>
      <ul>
      <li><a href='#tabs-1'>Tab 1</a></li>
        <li><a href='#tabs-2'>Tab 2</a></li>
        <li><a href='#tabs-3'>Tab 3</a></li>
      </ul>
      <div id='tabs-1'>
        <p>FUNCTION GOES HERE</p>
      </div>
      <div id='tabs-2'>
        <p>tab two content.</p>
      </div>
      <div id='tabs-3'>
        <p>tab three content.</p>
      </div>
    </div>

    </body>
    </html>";

?>

1 个答案:

答案 0 :(得分:0)

$ function = self :: showMap($ item);

“Html $ function Html ......”; 如果你在HTML中使用双重代码,不需要连接,它将显示为值。