file_put_content()方法不起作用

时间:2013-02-18 06:39:39

标签: php mysql

<?php
function put()
    {
$result = mysql_query("SELECT * FROM members WHERE Website_Name = '$GLOBALS[str]'") or die(mysql_error());
?>
<div id='container' style='width:100%'>
<style>
h1 {font-size:45px;}
</style>
<div id='header' style='background-color:#FFFFFF;'>
<h1 style='margin-bottom:0;margin-top:0;height:20%;float:center;'>
<?php
while($row = mysql_fetch_array($result))
{?>
<table align='left'><tr><td><img src="$row[Website_Name]/index.jpg" align='center' width='240' height='170'></td></tr></table>
<table align='center'><br><tr><td><h1>"$row[Business_Name]"</td></tr></table>
<?php
}
 ?>

file_put_contents("'$GLOBALS[str]'/index.php",put());

我正在使用file_put_contents()方法..但它没有将数据写入文件。

2 个答案:

答案 0 :(得分:1)

因为您的功能put没有 return 任何数据。它将文本写入输出,但它不return。因此没有任何内容写入文件。在此处了解函数返回值:http://www.php.net/manual/en/functions.returning-values.php

此外,我认为"'$GLOBALS[str]'/index.php"不是有效的文件名。

答案 1 :(得分:0)

$ data =“您的数据”;

$ file = uniqid()。'。php'; //如果您不想创建文件,可以使用现有文件。

$ success = file_put_contents($ file,$ data);