哪种方式是关于PHP会话的正确方法?

时间:2013-01-12 17:58:25

标签: php session

哪种方式是关于php会话的正确方法?

哪种方式是正确的方式,A还是B? :

A:

<html>
<body>
<?php
       session_start();
?>
        ...

或者

B:

<?php
       session_start();
?>
<html>
<body>
        ...

2 个答案:

答案 0 :(得分:4)

B总是更好

来自documentation

Note: To use cookie-based sessions, session_start() must be called before
outputing anything to the browser.

答案 1 :(得分:2)

它的B总是更好的选择。到目前为止,我已经尝试过A甚至无法工作。

您甚至可以查看http://www.w3schools.com/php/php_sessions.asp他们也推荐相同的内容。